-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (30 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Machinspirator</title>
<link rel="stylesheet" href="style/normalize.css" media="screen">
<link rel="stylesheet" href="style/grid.css" media="screen">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Dosis">
<link rel="stylesheet" href="style/main.css" media="screen">
</head>
<body>
<section class="loading">
<i class="fa fa-spinner fa-pulse fa-4x loading-icon" aria-hidden="true"></i>
<p class="loading-text">Generating content…</p>
</section>
<header class="header"><h2>Machinspirator</h2></header>
<section class="content">
<img src="" alt="" class="image"/>
<p class="image-description"></p>
<p class="image-tags"></p>
<ul class="articles"></ul>
<p class="youtube-link"></p>
<button type="button" name="button" class="button" id="generate-image-button">Generate image</button>
</section>
<script src="https://use.fontawesome.com/dab6567ebf.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="src/app.js"></script>
</body>
</html>