forked from scrimba/dogdy-dave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.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
<!doctype html>
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<title>Dodgy Dave's Stock Predictions</title>
<link rel="stylesheet" href="index.css">
<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=Comic+Neue:wght@700&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<img src="images/logo-dave-text.png" alt="Dodgy Dave's Stock Predictions">
</header>
<main>
<section class="action-panel">
<form id="ticker-input-form">
<label for="ticker-input"> Add up to 3 stock tickers below to get a super accurate stock predictions report👇 </label>
<div class="form-input-control">
<input type="text" id="ticker-input" placeholder="MSFT">
<button class="add-ticker-btn">
<img src="images/add.svg" class="add-ticker-svg" alt="add">
</button>
</div>
</form>
<p class="ticker-choice-display">
Your tickers will appear here...
</p>
<button class="generate-report-btn" type="button" disabled>
Generate Report
</button>
<p class="tag-line">Always correct 15% of the time!</p>
</section>
<section class="loading-panel">
<img src="images/loader.svg" alt="loading">
<div id="api-message">Querying Stocks API...</div>
</section>
<section class="output-panel">
<h2>Your Report 😜</h2>
</section>
</main>
<footer>
© This is not real financial advice!
</footer>
<script src="index.js" type="module"></script>
</body>
</html>