-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnect with us.html
80 lines (76 loc) · 3.16 KB
/
connect with 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
<!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>Connect With Us</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="about style.css">
</head>
<body>
<header>
<div class="container">
<div id="navbar">
<img src="backgrounds/536_ccra_travel_logo.png" class="logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="lifestyle.html">Lifestyle & Culture</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="connect with us.html">Connect with Us</a></li>
</ul>
</nav>
</div>
</header>
<section class="contact">
<div class="content">
<h2>Contact Us</h2>
<p>Interested in visiting one of Africa's finest city?<br> By signing up for a Newsletter, we will provide you with the latest updates right away. </p>
</div>
<div class="contactForm">
<form action="thankyou.html" method="POST">
<h2>Subscribe for Newsletter</h2>
<div class="inputBox">
<label for="name">First Name:</label><br>
<input type="text" name="" required="required">
</div>
<div class="inputBox">
<label for="name">Last Name:</label><br>
<input type="text" name="" required="required">
</div>
<div class="inputBox">
<label for="name">Email:</label><br>
<input type="text" name="" required="required">
</div>
<div class="inputBox">
<label for="name">Country:</label><br>
<input type="text" name="" required="required">
</div>
<div class="inputBox">
<label for="name">Region:</label><br>
<input type="text" name="" required="required">
</div>
<div class="inputBox">
<input type="submit" name="" value="Subscribe">
</div>
</form>
</div>
</div>
</section>
<footer>
<h1>CONTACT US</h1>
<h3>Telephone Number</h3>
<p>+233 8984 90927</p>
<h3>Email</h3>
<p>visitaccra@gmail.com</p>
<h3>Address</h3>
<p>5093 Osu Road,<br>Accra, Ghana,<br>P.O Box 10800</p>
<p>Alex Web Design Private Limited, Copyright © 2021</p>
</footer>
</body>
</html>