-
Notifications
You must be signed in to change notification settings - Fork 0
/
discover2.html
60 lines (58 loc) · 2.31 KB
/
discover2.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
<!DOCTYPE html>
<html>
<head>
<title>Discover | Horizon Navigator</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- This page uses the same design as discover.html with difference in content -->
<div class="navbar">
<div class="logo">
<a href="index.html">
<img src="logo.png" alt="Logo" class="logo">
</a>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="discover.html" class="active">Discover</a>
<a href="timeline.html">Timeline</a>
</div>
</div>
<div class="Context">
<h1>Discover</h1>
<div class="choose">
<a href="discover.html" class="unchosen">
<p>Attractions</p>
</a>
<!-- This time, festivals is being selected so it uses the "chosen" class -->
<a href="discover2.html" class="chosen">
<p>Festivals</p>
</a>
</div>
<div class="places">
<p class="highlight">Spring Festival</p>
<p>Lantern Festival</p>
<p>Ching Ming Festival</p>
<p>Dragon Boat Festival</p>
<p>Qixi Festival</p>
<p>Mid-Autumn Festival</p>
</div>
</div>
<div class="Description">
<div class="Destext">
<h1>Spring Festival</h1>
<p>Chinese New Year is the festival that celebrates the beginning of a new year on the traditional lunisolar Chinese calendar. In Chinese, the festival is commonly referred to as the Spring Festival as the spring season in the lunisolar calendar traditionally starts with lichun, the first of the twenty-four solar terms which the festival celebrates around the time of the Chinese New Year.
The first day of Chinese New Year begins on the new moon that appears between 21 January and 20 February.
</p>
</div>
<div class="Desimage">
<img src="SF.jpg" alt="image of the spring festival">
</div>
</div>
<div class="totop">
<a href="https://en.wikipedia.org/wiki/Chinese_New_Year" target="_blank">
<img src="GO.png" alt="Jump to certain site">
</div>
<img src="bottom.png" alt="Background" class="BG">
</body>
</html>