-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (59 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Word on the Street</title>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1">
<link href="main.css" rel="stylesheet" type="text/css" />
<link href="responsive.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.1.1/normalize.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Domine" rel="stylesheet">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js"></script>
<script src="index.js"></script>
</head>
<body>
<header role="banner">
</header>
<main role="main">
<section class="searchinstructions" aria-live="polite">
<section class="searchbox background">
<h1>Word on the Street</h1>
<form action='#' class="stock-search">
<h2><label for="query">What's the word on Wall Street?</label></h2>
<p>Search your favorite company below!</p>
<input type="text" class="searchingFor" placeholder="Ex. Apple, Exxon...">
<button type=submit>Search</button>
</form>
</section>
</section>
<div class="error hidden"></div>
<div class="row">
<div class="col-4">
<div class="showresults hidden">
<h3>Company Ticker Data</h3>
<section class="timeseries" aria-live="assertive">
</section>
</div>
</div>
<div class="col-4">
<div class="showresults hidden">
<h3>Price Information</h3>
<section class="pricing" aria-live="assertive">
</section>
</div>
</div>
<div class="col-4">
<div class="second hidden">
<h3>Company News</h3>
<section class="news" aria-live="assertive">
</section>
</div>
</div>
</div>
</main>
<footer role="contentinfo" class="footer hidden">
<h4>Created By: <a href="mailto:monetfulgham@gmail.com?Subject=Hey%20Mo!">Mone't Fulgham</h4>
</footer>
</body>
</html>