forked from turingschool-examples/romcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Playball&family=Playfair+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
<title>RomCom</title>
</head>
<body>
<section class="controls">
<button class="home-button hidden">Home</button>
<button class="random-cover-button">Show New Random Cover</button>
<button class="save-cover-button">Save Cover</button>
<button class="view-saved-button">View Saved Covers</button>
<button class="make-new-button">Make Your Own Cover</button>
</section>
<section class="view home-view">
<section class="main-cover">
<img class="cover-image" src="./assets/prairie.jpg">
<h2 class="cover-title">Windswept Hearts</h2>
<h3 class="tagline">A tale of <span class="tagline-1">passion</span> and <span class="tagline-2">woe</span></h3>
<img class="price-tag" src="./assets/price.png">
<img class="overlay" src="./assets/overlay.png">
</section>
</section>
<section class="view saved-view hidden">
<section class="saved-covers-section"></section>
</section>
<section class="view form-view hidden">
<form>
<label for="cover">Cover</label>
<input class="user-cover" type="text" id="cover" />
<label for="title">Title</label>
<input class="user-title" type="text" id="title">
<label for="descriptor1">First descriptor</label>
<input class="user-desc1" type="text" id="descriptor1" />
<label for="descriptor2">Second descriptor</label>
<input class="user-desc2" type="text" id="descriptor2" />
<button class="create-new-book-button">Make my book</button>
</form>
</section>
<script src="./src/data.js"></script>
<script src="./src/Cover.js"></script>
<script src="./src/main.js"></script>
</body>
</html>