-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (90 loc) · 3.62 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
84
85
86
87
88
89
90
<!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">
<link rel="stylesheet" href="index.css"
<title>Travel Agency</title>
</head>
<body>
<header>
<navbar>
<img src="#">
<div class="menu">
<a href="#home">Home</a>
<a href="#package">Our Package</a>
<a href="#call-us">Call Us</a>
</div>
</navbar>
</header>
<main>
<section id="hero">
<div class="container">
<div class="hero-title">
<h1>Your Trusted Travel Agency</h1>
<h6>Your happiness is our happiness</h6>
</div>
</div>
</section>
<section id="about-contact">
<div class="container">
<div class="about">
<img src="https://placekitten.com/400/300">
<div class="about-content">
<div class="content-caption">
<p>"Libutan jadi menyenangkan bersama Travel Agency."</p>
</div>
<div class="content-person">
<img src="https://placekitten.com/75/75">
<div class="person-info">
<h6>Florence Hughes</h6>
<p>Ibu Rumah Tangga, 28</p>
</div>
</div>
</div>
<hr />
</div>
<div class="about-information">
<h6 class="information-title">Use this space to provide users with more information about your offer.</h6>
<ul class="information-list">
<li>
<div class="list-number">1</div>
<p class="list-paragraph">Your first feature</p>
</li>
<li>
<div class="list-number">2</div>
<p class="list-paragraph">Your second feature</p>
</li>
<li>
<div class="list-number">3</div>
<p class="list-paragraph">Your third feature</p>
</li>
</ul>
</div>
</div>
<div class="contact">
<div class="card">
<div class="card-title">
<h4>Contact Us</h4>
<p>Sales akan menghubungi</p>
</div>
<form>
<label for="">Your Name:</label>
<input type="text" name="name" placeholder="First and last name" />
<label for="">Email Address:</label>
<input type="email" name="email" placeholder="[email protected]" />
<label for="" name="interest">What are you interested in?</label>
<select>
<option>A</option>
<option>B</option>
<option>C</option>
</select>
<input type="submit" value="Send" />
</form>
</div>
</div>
</section>
</main>
</body>
</html>