-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.84 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
<!-- create app to find trending stock symbol list in region selected -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- link styles -->
<link rel="stylesheet" href="style.css">
<!-- link Google fonts-->
<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=Syncopate:wght@700&display=swap" rel="stylesheet">
<title>Trending Stocks Today</title>
</head>
<body>
<div class="wrapper">
<header>
<h1>Trending Stocks Today</h1>
<h2>Region:</h2>
<select name="" id="">
<option value="" selected disabled hidden>Select Here</option>
<option value="us">United States</option>
<option value="ca">Canada</option>
<option value="au">Australia</option>
<option value="fr">France</option>
<option value="de">Germany</option>
<option value="gb">Great Britain</option>
<option value="hk">Hong Kong</option>
<option value="it">Italy</option>
<option value="es">Spain</option>
</select>
</header>
<div class="results-stocks">
<!-- dynamic content goes here -->
</div>
</div>
<footer>
<p>Created at <a href="https://junocollege.com/">Juno College</a> by <a href="https://github.com/luu-jennifer">Jennifer Luu</a>.</p>
<p>Data courtesy of <a href="https://www.yahoofinanceapi.com/">Yahoo Finance API</a>.</p>
</footer>
<!-- load JS and jQuery -->
<script src='https://code.jquery.com/jquery-3.4.0.min.js' integrity='sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=' crossorigin='anonymous'></script>
<script src="app.js"></script>
</body>
</html>