-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (72 loc) · 2.73 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<link rel="stylesheet" href="./styles/style.css">
<title>Friends Quote App</title>
</head>
<body>
<!--Header-->
<header>
<div class="logo">
<img src="./assets/friendslogo.svg" alt="Friends Logo">
<p>Hey, how you doin? Looking for something fun? Select a name in the dropdown menu below to read a quote
from one of our loved Friends!</p>
</div>
</header>
<!--End of Header-->
<main>
<!--Character Selection-->
<section class="wrapper">
<div class="quote-selection">
<div class="dropdown">
<label for="names" sr-only="true" aria-hidden="true">Select a name:</label>
<select name="friends-name" id="friends-name">
<option value="Chandler">Chandler</option>
<option value="Joey">Joey</option>
<option value="Monica">Monica</option>
<option value="Phoebe">Phoebe</option>
<option value="Rachel">Rachel</option>
<option value="Ross">Ross</option>
</select>
</div>
<div class="random-button">
<button>Give me a quote !</i></i></button>
</div>
</section>
<!--End of Character Selection-->
<!--Quote Section-->
<section class="quote-section">
<figure class="doorframe">
<img class="frame" src="./assets/doorframe.svg" alt="Yellow door frame">
<img class="friendPhoto" src="./assets/characters/friends.jpg" alt="One of the characters photo">
</figure>
<aside class="quotebox">
<div class="board">
</div>
</aside>
</section>
<!--End of Quote Section-->
<div class="wrapper">
<div class="actor-bio" id="actor-bio">
<!-- insert actor information from second API call here -->
</div>
</div>
</div>
</main>
<!--Footer-->
<footer>
<div class="wrapper">
<figure class="logo-footer">
<img src="./assets/centralperk.svg" alt="Central Perk Logo">
</figure>
<h5>Brian O’Reilly | Priscila Mattos - <a href="https://junocollege.com/">Juno College 2022</a> - Cohort 40
</h5>
</div>
</footer>
<!--End of Footer-->
<script type="module" src="./js/app.js"></script>
</body>
</html>