-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (43 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourify</title>
<link rel="stylesheet" href="/dist/style.css">
<link rel="stylesheet" href="/dist/helper.css">
</head>
<body>
<Nav>
<div class="logo"><a class="itim-regular" href="#">Tourify</a></div>
<div class="nav-links">
<a class="links inter" href="">Community Plans</a>
<a class="links inter" href="">About us</a>
<a class="links inter" href="">Login</a>
<a class="links inter" id="Register" href="">Register</a>
</div>
</Nav>
<main class="HeroSection">
<img src="/Resource/HeroSection.png" alt="">
<h1 class="jockey-one-regular" style="font-size: 64px;">Discover new places with <br>Artificial Intelligence</h1>
<div class="form">
<div class="form_input inter">
<div class="icon"><img src="/Resource/grommet-icons_money.svg" alt=""></div>
<input type="text" id="form-Budget" placeholder="Budget">
</div>
<div class="form_input inter">
<div class="icon"><img src="/Resource/bi_calendar4.svg" alt=""></div>
<input type="text" id="form-Time" placeholder="Time" style="width: 12ch;">
</div>
<div class="form_input inter">
<div class="icon"><img src="/Resource/material-symbols-light_person-outline.svg" alt=""></div>
<input type="text" id="form-People" placeholder="No. of person" style="width: 12ch">
</div>
<div class="btn__suggestion inter">
<div>Show suggestion</div>
<button style="border-radius: 50%;"><a href="/suggestion.html"><img src="/Resource/maki_arrow.svg" alt=""></a></button>
</div>
</div>
</main>
</body>
</html>