-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
85 lines (77 loc) · 2.32 KB
/
contact.html
File metadata and controls
85 lines (77 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel Bloom</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Raleway:wght@700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<link rel="icon" href="public/logo.svg" type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<div class="nav-inner">
<div class="nav-left">
<img src="public/logo.svg" id="logo" />
<span class="site-title">Travel Bloom</span>
</div>
<div class="nav-toggle" onclick="toggleNav()">☰</div>
<div class="nav-center">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
</div>
</nav>
<div class="layout-wrapper">
<header class="hero">
<div class="hero-content">
<h1>Contact Us</h1>
<p style="max-width: 600px">
We'd love to hear from you! Fill out the form below and we'll get
back to you as soon as possible.
</p>
</div>
</header>
</div>
<form onsubmit="event.preventDefault(); alert('Message sent!');">
<div>
<label for="name" class="form-label">Name</label><br />
<input
type="text"
id="name"
name="name"
placeholder="Your name"
class="form-input" />
</div>
<div>
<label for="email" class="form-label">Email</label><br />
<input
type="email"
id="email"
name="email"
placeholder="Your email"
class="form-input" />
</div>
<div>
<label for="message" class="form-label">Message</label><br />
<textarea
id="message"
name="message"
rows="5"
placeholder="Your message"
class="form-input"></textarea>
</div>
<button type="submit" style="width: 100%">Submit</button>
</form>
<footer>
<p>
Follow us: <a href="#">Instagram</a> | <a href="#">Facebook</a> |
<a href="#">Twitter</a>
</p>
</footer>
</body>
</html>