-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
40 lines (37 loc) · 1.6 KB
/
form.html
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
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<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">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./formStyle.css">
<title>Contact Us | Form</title>
</head>
<body>
<div class="form">
<div class="field name-field active">
<i class="fa fa-user" aria-hidden="true"></i>
<input id="username" type="text" placeholder="Username">
<i class="fa fa-arrow-down" aria-hidden="true"></i>
</div>
<div class="field email-field inactive">
<i class="fa fa-envelope" aria-hidden="true"></i>
<input id="email" type="email" placeholder="Email">
<i class="fa fa-arrow-down" aria-hidden="true"></i>
</div>
<div class="field password-field inactive">
<i class="fa fa-key" aria-hidden="true"></i>
<input id="password" type="password" placeholder="Password">
<i class="fa fa-arrow-down" aria-hidden="true"></i>
</div>
<div class="field thanks-field inactive">
<i class="fa fa-heart" aria-hidden="true"></i>
<h4 id="thanks">Thanks</h4>
<i class="fa fa-heart" aria-hidden="true"></i>
</div>
</div>
<script src="./form.js"></script>
</body>
</html>