-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
55 lines (38 loc) · 1.67 KB
/
Copy pathcontact.html
File metadata and controls
55 lines (38 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - My Personal Blog</title>
<link rel="shortcut icon" href="images/hr2.jpg" type="image/x-icon">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<a href="#main-content" class="skip-link">Skip to Main Content</a>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Travelling Guides & Gallery</a></li>
<li><a href="contact.html" style="background-color: #555;">Contact</a></li>
</ul>
</nav>
<main id="main-content">
<h1><ins>Contact Me</ins></h2>
<p>If you'd like to reach out, please fill out the contact form below.</p>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form> <br><br>
<div class="socialdiv">
<a href="https://www.facebook.com/hrk2001?mibextid=JRoKGi" target="_blank" class="fb" title="Facebook"></a>
<a href="https://www.instagram.com/randika__hr?igsh=Ymx6YmExaDl5OTYw" target="_blank" class="inst" title="Instagram"></a>
<a href="https://wa.me/+94701048274" target="_blank" class="wtsp" title="Whatsapp"></a>
</div>
</main>
</body>
</html>