-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (63 loc) · 2.99 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
73
<html>
<head>
<title>Visit Mekelle</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="header">
<h1>Mekelle</h1>
<h2>Visit Mekelle: The capital of Tigray.</h2>
</div>
<div class="top">
<h1>The Best Historical Places to Visit in Mekelle</h1>
</div>
<div class="items">
<article>
<h3>1. The Martyrs' Memorial Monument</h3>
<p>
The Martyrs' Memorial Monument pays respects to the over 60,000 TPLF fighters who died and over 100,000 fighters
who were injured in the overthrow of the Marxist Derg regime in 1991.
</p>
<div class="more-content">
<p>The monument is 51 metres (167 ft) tall and is located in Adi-Haki sub-city. The monument has many sculptures
depicting the struggle of the peasants and fighters against the Derg soldiers.</p>
<img src="https://scontent-lhr6-1.xx.fbcdn.net/v/t1.6435-9/49199443_1241485629347671_144379676456910848_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=7b2446&_nc_ohc=XYII94GqbokQ7kNvgGkgB59&_nc_ht=scontent-lhr6-1.xx&_nc_gid=AQflSF0lqihGRAe4woSX8p8&oh=00_AYAoFYMGWNt3f4jLS49bLk2gqkjXetsXDwfzK5w9EkeHNA&oe=67101AE7"
alt="Martyrs' Memorial Monument in Mekelle">
</div>
<button class="show-more-btn" onclick="toggleContent(this)">Show More</button>
</article>
<article>
<h3>2. Abreha Castle (Enda Dejat Abraha)</h3>
<p>
A local lord built Abreha Castle, which has a very similar architectural design to Emperor Yohannes' palace, in the
1890s.
</p>
<div class="more-content">
<p>At present, the castle is a hotel, commanding a magnificent view of Mekelle.</p>
<img src="https://lh7-us.googleusercontent.com/QFx4c63B-WAjzPjXJIPCM5t5ExFNViOOpkQdT0HanUEC__2SxzEcLfsmoUk1J4wJi5eUYxIcLmOwZUB9s1MWlF9Rx8cyGot4nnSr_BEKNkx6uVCD--zxHb6nNNyIra6iY4wN4FyVAMZmpTBgBeqyKVY"
alt="Abreha Castle with a view of Mekelle city">
</div>
<button class="show-more-btn" onclick="toggleContent(this)">Show More</button>
</article>
<article>
<h3>3. Emperor Yohannes IV Castle</h3>
<p>
In the 19th century, Emperor Yohannes IV became Negus and built a castle and Ethiopian Orthodox Tewahedo churches
in the city.
</p>
<div class="more-content">
<p>The castle was constructed by Ethiopian engineer Lij Ingidashet and Italian engineer Giacomo Naretti. The castle
complex now serves as a museum where the Emperor's throne, royal bed, ceremonial dress, rifles, and many other
valuable historical collections can be seen.</p>
<img src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/11/ce/53/ae/the-palace-of-yohannes.jpg?w=1800&h=-1&s=1"
alt="Emperor Yohannes IV Castle in Mekelle">
</div>
<button class="show-more-btn" onclick="toggleContent(this)">Show More</button>
</article>
</div>
<footer>
<p>Thank you for visiting my hometown page!</p>
</footer>
<script src="script.js"></script>
</body>
</html>