generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog-in.html
77 lines (48 loc) · 1.82 KB
/
log-in.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/8f8d6e0652.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<div class="nav">
<header>You<span>Matter</span>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a> <i class="fas fa-home"></i></li>
<li><a href="log-in.html">Sign Up</a> <i class="fas fa-sign-in-alt"></i> </li>
<li><a href="our-facilities.html">Our Facilities</a > <i class="fas fa-dumbbell"></i> </li>
<li><a href="talk.html">Talk To US</a> <i class="fas fa-user-friends"></i></li>
</ul>
</nav>
</div>
<body>
<div class="sign-up">
<h4>Sign Up Today</h4>
<form>
<label> First Name</label>
<input type="text" placeholder="">
<label>Last Name</label>
<input type="text" placeholder="">
<label>Password</label>
<input type="text" placeholder="">
<label> Email <Address></Address></label>
<input type="text" placeholder="">
<label>Contact Number</label>
<input type="text" placeholder="">
<button type="submit">Submit</button>
</div>
</form>
<footer>
<div class="soc">
<a href="https://www.facebook.com" target="_blank" rel="noopener"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.instagram.com" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.twitter.com" target="_blank" rel="noopener"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>