-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (37 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/login-styles.css">
<title>Travel-Agency-Login-page</title>
</head>
<body>
<main>
<section class="first-section">
<div class="bluebird-image-div">
<img src="img/blueBird-removebg-preview.png" alt="bluebird photo">
<h1 class="main-title">TRIPIFY</h1>
</div>
<h2>Explore your dream destinations</h2>
<div class="justify-text-center">
<p>Welcome to Tripify! Please enter your login credentials to access your account and explore our wide range of travel options</p>
</div>
</section>
<hr class="sections-separator">
<section class="second-section">
<form action="../index.html">
<label for="email-area">Email</label>
<input type="email" name="email-area" required id="email-area">
<label for="password-area">Password</label>
<input type="password" name="password-area" required id="password-area">
<button>LOG IN</button>
</section>
</form>
<footer>
<p>Don't have an account? <b>Register</b></p>
</footer>
</main>
</body>
</html>