38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>form Get</title>
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" >
|
|
<link rel="stylesheet" href="css/estilo.css">
|
|
</head>
|
|
<body>
|
|
<form action="">
|
|
<h1>Form<span>Get</span></h1>
|
|
<label for="name">Full Name :</label>
|
|
<div>
|
|
<i class="fas fa-user"></i>
|
|
<input type="text" id="name" placeholder="Full Name">
|
|
</div>
|
|
<label for="email">Email :</label>
|
|
<div>
|
|
<i class="fas fa-envelope-square"></i>
|
|
<input type="email" id="email" placeholder="Email">
|
|
</div>
|
|
<label for="contact">Contact Number :</label>
|
|
<div>
|
|
<i class="fas fa-phone-square"></i>
|
|
<input type="number" id="contact" placeholder="Contact Number">
|
|
</div>
|
|
<label for="address">Address :</label>
|
|
<div>
|
|
<i class="fas fa-home"></i>
|
|
<input type="text" id="address" placeholder="Address">
|
|
</div>
|
|
<button>Submit</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |