This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (64 loc) · 2.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Erfgoedkit.nl Widget</title>
<link rel="stylesheet" href="./styles/main.scss" />
<style>
body {
margin: 0;
padding: 0;
line-height: 1.6;
}
article {
max-width: 40rem;
margin: 0 auto;
font-family: sans-serif;
}
a {
color: #307d71;
}
h1,
h2 {
margin-bottom: 0;
}
h2 {
margin-top: 4rem;
}
</style>
</head>
<body>
<article>
<h1>The Erfgoedkit.nl Widget</h1>
<p>
This is the Widget, provided by
<a href="https://netwerkdigitaalerfgoed.nl/"
>Netwerk Digitaal Erfgoed (NDE)</a
>. For more information, bug reports or Pull requests, visit the
<a href="https://github.com/grrr-amsterdam/erfgoedkit.nl-widget"
>GitHub repository</a
>.
</p>
<h2>Examples</h2>
<p>
Below you can find 4 embedded widgets, all with a different
maximum width. This displays the automatic responsiveness of the
widget.
</p>
</article>
<div style="max-width: 15rem; margin: 4rem auto">
<div data-container="nde-widget"></div>
</div>
<div style="max-width: 25rem; margin: 4rem auto">
<div data-container="nde-widget"></div>
</div>
<div style="max-width: 50rem; margin: 4rem auto">
<div data-container="nde-widget"></div>
</div>
<div style="max-width: 80rem; margin: 4rem auto">
<div data-container="nde-widget"></div>
</div>
<script src="./script/main.js"></script>
</body>
</html>