-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>flaggy</title>
<link href="assets/flaggy.ico" rel="shortcut icon" >
<link href="main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<header>
<h2 class="title">flaggy</h2>
<h5 class="description">randomly generated svg avatars for social media</h5>
</header>
<div id="selection">
<h4 id="selectDisplayFlags" class="selection">just the flags</h4>
<h4 id="selectDisplaySocial" class="selection">social media demo</h4>
</div>
<div id="test" class="hidden"></div>
<div id="justFlagsDiv" class="content hidden">
<button id="generateFlagGrid" class="input button">new flags</button>
<div id="flagGrid" class="flag-grid">
</div>
</div>
<div id="socialDiv" class="content">
<button id="generateNewPost" class="input button">new posts</button>
<div id="postDisplay" class="post-display">
</div>
</div>
<footer>
<a href="https://github.com/ludant/flaggy">ludant@github</a>
</footer>
</div>
</div>
</body>
<script src="main.js" type="module"></script>
</html>