-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (87 loc) · 2.65 KB
/
index.html
File metadata and controls
87 lines (87 loc) · 2.65 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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" />
<link rel="stylesheet" href="./public/style.css" />
<title>Rijks-Met Collaboration</title>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body>
<header>
<nav>
<ul class="nav-links left-links">
<li class="link-icon">
<a href="#" class="material-icons">menu</a>
</li>
<li class="link-icon">
<a href="#" class="material-icons">search</a>
</li>
<li class="nav-button nav-button-home">
<a href="#"><span class="material-icons">chevron_left</span>Home</a>
</li>
</ul>
<ul class="nav-links">
<li class="link"><a href="#">Language</a></li>
<li class="link"><a href="#">Login</a></li>
<li class="link"><a href="#">Giftshop</a></li>
<li class="nav-button nav-button-tickets">
<a href="#">Tickets</a>
</li>
</ul>
</nav>
<div class="rijks-met-container">
<img
class="rijks-logo"
src="./public/images/rijksmuseum-white.svg"
alt="Rijksmuseum logo"
/>
<img
class="and-symbol"
src="./public/images/NicePng_ampersand-png_1619241.png"
alt="& symbol"
/>
<img
class="met-logo"
src="./public/images/customer_themet.png"
alt="The Metropolitan Museum logo"
/>
</div>
</header>
<main>
<section id="intro">
<p class="description">
<strong>Rijksmuseum</strong> and
<strong>The Metropolitan Museum</strong> <br />celebrate their new
partnership by offering an easy digital access to hundred of thousands
of great artworks of the human heritage. <br />Enjoy searching for
your favorite art across the Atlantic.
</p>
</section>
<section id="search-container">
<form id="search-form">
<input
type="text"
id="main-term"
placeholder="Add a keyword to search ..."
autocomplete="off"
;
/>
<input
type="submit"
id="search-button"
class="button"
value="Search"
/>
</form>
</section>
<section id="search-results"></section>
</main>
<footer></footer>
<script type="module" src="./src/main.js"></script>
</body>
</html>