-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
78 lines (67 loc) · 2.96 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Directions to sligo</title>
<link rel="stylesheet" href="style.css">
<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=Great+Vibes&family=Kalam:wght@300;400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<!-- Contact Header -->
<section class="sub_header">
<nav>
<a href="index.html"><img src="logo.png" alt=""></a>
<div class="nav-links" id="navLinks">
<ul>
<li><a href="index.html">SLIGO</a></li>
<li><a href="attractions.html">ATTRACTIONS</a></li>
<li><a href="contacts.html">CONTACT</a></li>
</ul>
</div>
</nav>
<h1>Directions to sligo</h1>
</section>
<!-- Map -->
<div class="location" id="map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d18640.09161376856!2d-8.48073005!3d54.268374949999995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x485ee9b5677caee9%3A0xa00c7a997317380!2sSligo!5e0!3m2!1sen!2sie!4v1695171869511!5m2!1sen!2sie"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!-- Contact Me -->
<section class="contact_me">
<div class="row3">
<div class="contact_col">
<div>
<i class="fa-solid fa-message"></i>
<h5>Thank you for visiting my website, please don't forget to provide your feedback about this website.</h5>
</div>
<div>
<h2>_____ Numan Al Rashid _____</h2>
</div>
</div>
<div class="contact_col">
<form>
<input type="text" placeholder="Enter Your Name" required>
<input type="email" placeholder="Enter Email Address" required>
<input type="text" placeholder="Enter Your Subject" required>
<textarea rows="8" placeholder="Message" required></textarea>
</form>
</div>
</div>
</section>
<!-- Footer -->
<section class="footer">
<h4>About this Website!</h4>
<h6>This website was created for education purposes by Numan, Find me on:-</h6>
<div class="icon">
<a href="https://www.facebook.com/mn.alrashid"><i class="fa-brands fa-facebook"></i></a>
<a href="https://ie.linkedin.com/in/numan-al-rashid-072ba952"><i class="fa-brands fa-linkedin"></i></a>
</div>
</section>
</body>
</html>