-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
43 lines (40 loc) · 1.48 KB
/
signup.html
File metadata and controls
43 lines (40 loc) · 1.48 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
34
35
36
37
38
39
40
41
42
43
<!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">
<title>Signup</title>
<link rel="stylesheet" href="signup-style.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<h1>TRAVELL AND TOURISM</h1>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li> <a href="#search">Search</a></li>
<li> <a href="#contact">Contact</a>
</li>
<li><a href="login.html">Login</a></li>
</ul>
<main>
<div class="background">
<div class="text">
<h1>Signup</h1>
<p>Have Account? <a href="login.html">Login</a></p>
</div>
<div class="box">
<form class="form">
<input type="text" class="fullname" placeholder="Full Name" required>
<input type="email" class="email" placeholder="someone@abc.com" required>
<input type="text" class="username" placeholder="Username" required>
<input type="password" class="password" placeholder="Password" required>
<input type="submit" class="button" value="Login">
</form>
</div>
</div>
</main>
</body>
</html>