-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
127 lines (124 loc) · 3.95 KB
/
Copy pathbook.html
File metadata and controls
127 lines (124 loc) · 3.95 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<title>Easybooking.com | Oficial Website | The best way to booking!</title>
<link
rel="icon"
type="image/ico"
href="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0%2F16x16.ico?v=1637461807881"
sizes="16x16"
/>
<link
rel="icon"
type="image/ico"
href="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0%2F32x32.ico?v=1637461807881"
sizes="32x32"
/>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="form.css" />
</head>
<body>
<div class="all-content">
<header>
<div class="header">
<nav class="navigation">
<div class="nav-links">
<a href="/Easy-Booking"> <img
src="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0%2Flogo.png?v=1637457402341"
alt="Easybooking Logo"
/></a>
<ul class="main-nav">
<li><a href="/Easy-Booking">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div>
<div class="call-to-action">
<a href="book.html">Book Now!</a>
</div>
</nav>
</div>
</header>
<div id="content">
<main>
<div class="banner-box">
<img
class="banner-book"
src="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0/1000_F_134893914_fSWgkMCEG0Ovi7RRh2y7sKziXPLeFLek.jpg?v=1639551595072"
alt="Book Now"
/>
</main>
<div class="container">
<form action="/action_page.php">
<div class="row">
<div class="col-25">
<label for="fname">First Name</label>
</div>
<div class="col-75">
<input type="text" id="fname" name="firstname" placeholder="Your name..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="lname">Last Name</label>
</div>
<div class="col-75">
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="country">Country</label>
</div>
<div class="col-75">
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="subject">Subject</label>
</div>
<div class="col-75">
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
</div>
</div>
<br>
<div class="row">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
<footer>
<div class="clean">
<p class="copyright">
© 2020-2021 Easybooking.com | All rights reserved.
</p>
<div class="social">
<a href="https://www.facebook.com/"
><img
src="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0%2Ficons8-facebook.png?v=1637457752871
width="55" height="52"" alt="Facebook icon" /></a>
<a href="https://www.youtube.com/"
><img
src="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0%2Ficonmonstr-twitter-3.png?v=1637457752904
width="55" height="53"" alt="Twitter icon" /></a
>
<a href="https://www.google.com/"
><img
src="https://cdn.glitch.me/c2c0b70f-95f3-4579-8aba-cfbf050ab2d0%2Finstagram.png?v=1637457752871
width="55" height="55"" alt="Instagram icon" /></a
>
</div>
</div>
</footer>
</div>
</body>
<script src="script.js"></script>
</html>