-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_template.html
More file actions
33 lines (28 loc) · 1.38 KB
/
Copy pathform_template.html
File metadata and controls
33 lines (28 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-pzjw8+uaLw5FqOWpZkpxyVr+fbYyz5L2aObb8d51Gf5i6z7XxayVv+ZzY8CKCz5MOn+O8j" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<form class="form" id="form">
<div class="form-control py-3">
<label for="name">Username</label>
<input class="form-text mb-3" type="text" id="name" placeholder="Enter Your Name">
<small>Please Enter a name</small>
<label for="name">Email</label>
<input class="form-text " type="email" id="email" placeholder="Enter Your Email">
<small>Please Enter a valid Email</small>
</div>
<button class="btn btn-secondary my-3 w-100">Submit</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>