-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
22 lines (22 loc) · 791 Bytes
/
Copy pathforms.html
File metadata and controls
22 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<link rel="stylesheet" href="css/forms.css">
<script src="https://kit.fontawesome.com/4e5ffd9a30.js" crossorigin="anonymous"></script>
</head>
<body>
<form action="">
<div class="form-group">
<label for="name">Name</label> <!--- Use label instead of pargraphs. "for" is very usefl-->
<input id="name" type="text" class="text">
</div>
<div class="form-group">
<label for="email">Email</label> <!--- Use label instead of pargraphs. "for" is very usefl-->
<input id="email" type="email" class="text">
</div>
<div class="form-group">
<button>Register</button>
<button>Clear</button>
</div>
</form>
</body>
</html>