-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFirstWebsite.html
85 lines (85 loc) · 2.49 KB
/
FirstWebsite.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel World</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Parkinsans:[email protected]&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="firstwebsite.css" />
</head>
<body>
<div class="header">
<a class="head" href="https://google.com" target="_blank" >Home</a>
<p class="head" href="#">About Us</p>
<p class="head" href="#">Contact</p>
<p class="head" href="#">Bookings</p>
</div>
<div class="main">
<p class="title">TRAVEL WORLD</p>
<p class="subhead">Travel Life is Awesome.</p>
<div class="selection">
<div class="checkin">
<p>Check-in and Check-out</p>
<input type="date" name="" id="">
</div>
<div class="rooms">
<p>Rooms and Guests</p>
<select name="Rooms" id="">
<option value="1">1 Room</option>
<option value="2">2 Rooms</option>
<option value="3">3 Rooms</option>
<option value="4">4 Rooms</option>
</select>
</div>
<button type="submit" class="search" id="search">Search</button>
</div>
</div>
<hr>
<div class="footer">
<p class="icon">
<a href="#">
<img src="images/facebook.png" alt="" class="icons">
</a>
<a href="#">
<img src="images/instagram.png" alt="" class="icons">
</a>
<a href="#">
<img src="images/linkedin.png" alt="" class="icons">
</a>
<a href="#">
<img src="images/youtube.png" alt="" class="icons">
</a>
<a href="#">
<img src="images/twitter.png" alt="" class="icons">
</a>
</p>
<div class="left">
<p>Terms & Conditions</p>
<p>Privacy Policy</p>
</div>
</div>
</body>
</html>