Untitled
unknown
html
2 years ago
870 B
14
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="../Practice/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice</title>
</head>
<body>
<form class="form">
<label for="email">Email</label>
<input type="text" placeholder="email" id="email" name="email">
<p class="email-error"></p>
<label for="Address">Address</label>
<input type="text" placeholder="address" id="address" name="address">
<p class="address-error"></p>
<label for="dob">Date of Birth</label>
<input type="date" placeholder="Date of Birth" id="dob" name="dob">
<p class="date-error"></p>
<button type="submit">Submit</button>
</form>
</body>
</html>
<script src="../Practice/script.js"></script>Editor is loading...