forked from cmda-minor-web/web-app-from-scratch-2122
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="https://tomvdb.nl/images/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<link href="style/style.css" rel="stylesheet"/>
<title>Art museum</title>
</head>
<body>
<header>
<div>
<a href="/rijksmuseum-app/"><img src="images/logo.png" alt="logo"><h2>DIGITAL</h2></a>
<input value="" placeholder="Zoek een schilderij of kunstenaar" onfocus="this.value=''" type="text" id="search">
</div>
</header>
<main>
<section class="container">
<img style="width: 150px; height: 100px;" alt="loading" class="empty" src="https://c.tenor.com/tEBoZu1ISJ8AAAAC/spinning-loading.gif">
</section>
<button class="displayNone">Laad meer</button>
</main>
<script type="module" src="./js/script.js"></script>
</body>
</html>