-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (33 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Explore the Metropolitan Museum of Art collection with our React app. Discover thousands of artifacts from around the world, from ancient Egypt to modern art. Search by keyword, artist, or object type. Use the search bar to find what you're looking for, or browse by category. Learn about the history and culture behind each artifact. Our app is designed for easy navigation and a seamless user experience. Discover the art and artifacts of the Met with our React app."
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<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=Montserrat:wght@400..900&family=Poiret+One&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Metropolitan Museum Explorer</title>
</head>
<body>
<div id="root"></div>
<footer role="contentinfo">
<p>© 2024 Metropolitan Museum Explorer</p>
<a
href="https://github.com/bahaaador/met-museum-react"
target="_blank"
rel="noopener noreferrer"
>
View Source Code on GitHub
</a>
</footer>
<script type="module" src="src/index.jsx"></script>
</body>
</html>