forked from turingschool-examples/hang-in-there-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (44 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=EB+Garamond&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Hang In There</title>
</head>
<body>
<section class="main-poster">
<article class="poster">
<img class="poster-img" src="" alt="nothin' to see here">
<h1 class="poster-title">Title</h1>
<h3 class="poster-quote">Quote</h3>
</article>
<button class="save-poster">Save This Poster</button>
<button class="show-saved">Show Saved Posters</button>
<button class="show-random">Show Another Random Poster</button>
<button class="show-form">Make Your Own Poster</button>
</section>
<section class="poster-form hidden">
<form>
<h2>Create your own motivational poster</h2>
<label for="poster-image-url">Image url</label>
<input type="text" name="poster-image-url" id="poster-image-url" placeholder="https://gph.is/2n553Ra">
<label for="poster-title">Motivational title</label>
<input type="text" name="poster-title" id="poster-title" placeholder="Growth Mindset">
<label for="poster-quote">Motivational quote</label>
<input type="text" name="poster-quote" id="poster-quote" placeholder="Hang in there!">
<button class="make-poster">Show my poster</button>
</form>
<div class="divider"></div>
<button class="show-main">Nevermind, take me back!</button>
</section>
<section class="saved-posters hidden">
<h2>Saved Posters</h2>
<article class="saved-posters-grid"></article>
<button class="back-to-main">Back to Main</button>
</section>
<script src="./src/poster.js"></script>
<script src="./src/main.js"></script>
</body>
</html>