-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact-us.html
90 lines (83 loc) · 2.9 KB
/
contact-us.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
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Safari Retreat</title>
<!--meta tags for search engines results-->
<meta name="description" content="Safari Retreat, Safari, Retreat, Resort in Africa, Safari in Africa" />
<meta name="keywords" content="safari, resort, retreat, africa, savannah, adventures, relax, food, animals" />
<!-- link to favicon.io -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicon.ico/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon.ico/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon.ico/favicon-16x16.png"
/>
<link rel="manifest" href="assets/favicon.ico/site.webmanifest" />
<!-- link to css file -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- link to kit from Font Awesome -->
<script
src="https://kit.fontawesome.com/114b037aa4.js"
crossorigin="anonymous"
></script>
</head>
<body id="contact-us-body-bg-img">
<!-- header -->
<header id="header">
<h1 id="header-text"><a href="index.html">safari retreat</a></h1>
<!--makes the navmenu toggle-->
<input type="checkbox" id="checkbox-navmenu" name="checkbox-navmenu" />
<!--bars icon for the checkbox-->
<label for="checkbox-navmenu" id="label-checkbox"
><i class="fa-solid fa-bars" style="color: white"></i
></label>
<nav class="hidden-navmenu">
<ul id="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="safari-gallery.html">Safari gallery</a></li>
<li><a href="booking-page.html">Booking page</a></li>
<li><a href="contact-us.html" class="active">Contact us</a></li>
</ul>
</nav>
</header>
<!-- main content -->
<!-- contact us section -->
<section id="contact-us-section">
<div>
<h2>contact us</h2>
<p>
Feel free to contact us if you got any questions about our safari or
retreat. <br />
We will come back to you as soon as possible.
</p>
<p>
<strong> Phone number:</strong> <br />
+46 123 456 78
</p>
<p><strong>Email address: </strong> safariretreat@safari.com</p>
<form id="usrform"
action="https://kimskogfelter.github.io/Safari-Retreat/thankyou-contact-page.html"
method="get"
>
<p><strong> Write us a message: </strong></p>
<textarea name="comment" form="usrform"> Enter text here...</textarea>
<button type="submit" value="submit">Send message</button>
</form>
</div>
</section>
</body>
</html>