HTML5 is the standard code used to make most web pages work. It's the language of the internet. But like any language, you’ll need to work hard (and get lost a few times) to become fluent.
Registration WebPage Code HTML
<!doctype html>
<html charset="utf-8">
<head><title>Experiment</title></head>
<link rel="stylesheet"href="css.css">
<body id="body">
<form>
<div id="div1"><strong>
Registration Form
<strong><br>
NAME:<input type="txt" id="input" placeholder="Please Enter Name!">
<br>
Email:<input type="email" id="input" placeholder="Enter Valid Email !">
<br>
Phone No:<input type="number" id="input" placeholder="Enter Valid Number">
<br>
<select id="select">
<option>India</option>
<option>Pakishtan</option>
<option>United Stated America</option>
<option>China</option>
<option>Jarmany</option>
<option>Japan</option>
<option>England</option>
<option>Iron</option>
</select>
<br>
<input type="submit" id="input1">
</div>
</form>
</body>
</html>
Use CSS coding and link folder
#div1
{
width:50%;
height:500px;
background-image:url("mkb.jpg");
line-height:40px;
padding-left:auto;
text-align:center;
margin:25%;
}
#input
{
border-color:red;
border-style:italic;
background-color:transparent;
border-radius:5px;
}
input:hover
{
color:red;
}
#input1
{
border-radius:5px;
border-color:red green;
}
#select{
border-radius:8px;
border-color:solid;
border-style:bold;
}