-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (64 loc) · 3.09 KB
/
index.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
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/styles.css">
<!-- <script src="https://kit.fontawesome.com/67c66657c7.js"></script> -->
</head>
<body>
<div class="container">
<nav>
<div class="logo">Travelzo<span>.</span></div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Log in</a></li>
<li class="join"><a href="#">Join</a></li>
<li><a href="#">About Us</a></li>
</ul>
<div class="search">
<input type="search" placeholder="Search">
<span <i class="fa fa-search"></i></span>
</div>
</nav>
<div class="main-content">
<div class="side">
<h5 class="free">Join For Free</h5>
<h3 class="cont">Unleash the traveler<br> <span>inside YOU</span>, Enjoy your<br>Dream Vacation</h3>
<p class="start">Get Started with the easiest nd most secure website <br>to buy travel tickets.</p>
</div>
<button class="explore">Explore more</button>
<button class="book-now">Book Now</button>
<div class="signupform">
<form class="form">
<h3 class="form-title">Create <br> new account<span>.</span></h3>
<div class="InputContainer">
<input class="input" id="user" placeholder="a" type="text" />
<label for="user">Username</label>
</div>
<div class="InputContainer">
<input class="input" id="first" placeholder="Showrov" type="text" />
<label for="first">First Name</label>
</div>
<div class="InputContainer">
<input class="input" id="last" type="text" placeholder="Creation"/>
<label for="last">Last Name</label>
</div>
<div class="InputContainer">
<input class="input" placeholder="[email protected]" id="mail" type="text">
<label for="mail">Email</label>
</div>
<div class="InputContainer">
<input class="input" id="pass" type="password" placeholder="........"/>
<label for="pass">Password</label>
</div>
<h6 class="member">Already A Member? <span>Log in</span></h6>
<button class="submit" type="submit">Create Account</button>
</form>
</div>
</div>
</div>
</body>
</html>