forked from Resilient-Labs/simple-api2-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 1.97 KB
/
index.html
File metadata and controls
36 lines (29 loc) · 1.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="img/smily.png">
<title>Advice Generator</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&family=Cossette+Titre:wght@400;700&family=Epunda+Sans:ital,wght@0,300..900;1,300..900&family=IM+Fell+DW+Pica:ital@0;1&family=Kablammo&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mountains+of+Christmas:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+NKo&family=Oi&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poiret+One&family=Pompiere&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shizuru&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Stalinist+One&family=UnifrakturCook:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section>
<h1>Feeling stuck?</h1>
<h2>Take some (hopefully) helpful advice!</h2>
<div class="buttons">
<input type="text" name="" id="enterNumber" placeholder="Keep Your Chin Up">
<button type="button" id="pictureButton" name="button">:)</button>
</div>
<h3>Enter Your Lucky Number</h3>
</section>
<div id="results">
<img src="" class="pictureFrame" id="pictureFrame">
<h4></h4>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>