forked from klenathan/ucdmuseumweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartifact.html
62 lines (50 loc) · 2.12 KB
/
artifact.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
<!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>Artifact</title>
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/artifact.css">
<link rel="icon" type="image/x-icon" href="./assets/logo.png">
<script src="https://use.fontawesome.com/releases/v6.1.1/js/all.js" data-auto-replace-svg="nest"></script>
</head>
<body>
<div id="artifact-page">
<!-- Header -->
<header id="header"></header>
<!-- Main -->
<main>
<div id="overview">
<div class="dynasty-desc">
<h1>Artifacts</h1>
<!-- Brandon JR n.d, 'East Asian arts', Britannica, accessed 26 April 2022, https://www.britannica.com/art/East-Asian-arts -->
<p>
East Asian arts are comprised of the visual, performing, and musical arts of China, Korea (North and South
Korea), and Japan. (This region's literature is discussed in separate pages on Chinese, Korean, and Japanese
literature.) Certain studies of East Asia incorporate the civilizations of the Indochina peninsula and
adjacent islands, as well as Mongolia to the north. This sporadic inclusion is justified by a tight
geographic definition as well as a recognition of shared links formed by many of these cultures' embrace of
Buddhism. China, Korea, and Japan, on the other hand, have been inextricably linked for several millennia
through a shared written language and extensive cultural and political ties that ranged in spirit from
fawning devotion to contention.
</p>
</div>
<div id="img-container">
<div class="img-row" id="artifact-list">
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer id="footer"></footer>
<!-- JavaScript -->
<script src="script/footer.js"></script>
<script src="script/header.js"></script>
<script src="script/artifactListing.js"></script>
</div>
</body>
</html>