-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 956 Bytes
/
index.html
File metadata and controls
37 lines (31 loc) · 956 Bytes
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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="./main.css">
<ul class="card-container">
</ul>
<template>
<li class="card">
<span class="card__content"></span>
</li>
</template>
<footer class="created-by">
<p>
Source of this page is available on <a href="https://github.com/potherca/picker">Github</a> under a <a rel="license" href="https://spdx.org/licenses/GPL-3.0.html"
>GPL-3.0+ License</a> — Created by <a href="http://pother.ca/" class="potherca">Potherca</a>
</p>
</footer>
<script src="app.js"></script>
<script>
var aTopics = [
'Besteed bewuste aandacht aan de betekenis van beelden',
'Combineer materialen',
'Experimenteer',
'Gebruik een "verwijderende" techniek',
'Gebruik licht als medium',
'Maak een collage',
'Muteer het medium',
'Teken of schrijf "blind"',
];
window.RandomInspirationPicker(aTopics, 3);
</script>
</html>