-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (62 loc) · 3.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/5869741bc8.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<title>Gqeberha</title>
</head>
<body>
<nav>
<div class="logo">
<p>Gqeberha</p>
</div>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#activities">Activities</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav>
<main>
<h1>Visit My City</h1>
<h2>About</h2>
<div id="about">
<p class="text">
Port Elizabeth (PE) is not only home to stunning beaches, interesting museums and award-winning wildlife destinations, but also some of the friendliest people in the country. It’s no surprise to visitors that it’s called the “Friendly City”.
Port Elizabeth – or the Friendly City – is a coastal hub in the Eastern Cape where everything is only a 15-minute drive from the airport.
It’s one of the largest cities in South Africa, lying 770km east of Cape Town where it forms part of the Nelson Mandela Bay Metro, which links the city with the inland industrial towns of Uitenhage and Despatch.
</p>
<div>
<img class="pe-img" src="/images/pe-img.webp">
</div>
<p class="text">
When you want to hit the beach, Algoa Bay, the coastal strip of Nelson Mandela Bay, is a 40km-stretch of beaches with protected areas for swimming at Kings Beach, Hobie Beach, Humewood Beach (a world-class, Blue Flag beach), Pollock Beach and Denville Beach. Fishing, surfing, scuba diving, snorkelling and sailing are enjoyed at the quieter spots including Wildside, Sardinia Bay, Blue Horizon Bay, Bluewater Bay, Beachview and Schoenmakerskop.
If you’re interested in culture, you’ve got to check out the Red Location Museum, a museum in New Brighton Township that portrays “both the horrors of institutionalised racism and the heroic efforts of the anti-apartheid movement”.
</p>
</div>
</main>
<div id="activities" class="container">
<img id="image" class="item">
</div>
<button class="btn" id="previous">Previous</button>
<button class="btn" id="next">Next</button>
<footer id="contacts">
<div class="card">
<img class="sim-pic" src="/images/sim.jpg">
<div>
<h3 class="card-title">Simphiwe Mabuya</h3>
<p class="guide">Your Tour Guide</p>
<i class="fa fa-plane"></i>
</div>
</div>
<p class="contact-text">Contact your trusted Tour Guide <a href="mailto:[email protected]">Email</a> <br>
I was born and bred in Gqeberha, and I know every coner of the Windy City.
</p>
</footer>
<script src="script.js"></script>
</body>
</html>