-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (65 loc) · 3.49 KB
/
index.html
File metadata and controls
72 lines (65 loc) · 3.49 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
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
<meta name="description" content="HyperDrive conveniently provides you with data that you could find almost anywhere else. It's h-h-hyper cool!">
<meta name="keywords" content="Stocks, Market, Trading, Tool, Application, HyperDrive, AlphaVantage, API">
<meta name="author" content="Joshua Stelly">
<meta name="viewport" content="width=device-width">
<title>HyperDrive Capstone</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Oswald|Stalinist+One" rel="stylesheet">
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main role="main">
<section aria-live="assertive" id='loadScreen'>Loading Stock Data..</section>
<section id='displayBox' class='row'>
<!-- TITLE PAGE -->
<section id='start'>
<h1 role='banner'>HyperDrive</h1>
<p id='advisory'> 'HyperDrive' is an Investment Tool that scans data provided by <span id='sourceNote'> AlphaVantage </span> API and delivers it to the user.</p>
<p id='advisory'> **PLEASE** study thoroughly before investing. User should review all available news releases and earnings reports prior to investing in any company. </p>
<p id='advisory' id='final'> By clicking <span id='understand'>I 'UNDERSTAND'</span>,<br> you agree to hold yourself accountable.</p>
<div id='startWrapper'>
<button role='button' id='startButton' type='button'>I UNDERSTAND</button>
</div>
</section>
<!-- STOCK DISPLAY PAGE -->
<section id='stocks'>
<section id='stockInfo'>
<a role='link' href='' id='stockLink' target='_blank'>
<h2 id='stockBox'>
Ticker Here
</h2>
</a>
<span id='clickText'> Click box for Stocktwits page. </span>
<span id='clickText2'> </span>
</section>
<section id='priceSet'>
<p id='closedBanner'></p>
<p id='dateStamp'>[Date Unavailable]</p>
<section aria-live='assertive' id='priceAlign'>
<p id='prices' class='price'>[Price Unavailable]</p>
<p id='prices2' class='price'></p>
</section>
<p id='movement'></p>
</section>
<form action="#" id="js-search-form">
<label role='label' id='searchLabel' for="query">Insert Stock Symbol<br></label>
<input role='search' aria-labelledby='searchLabel' id='query' type="text" class="js-query" placeholder="RDC, AAPL, CAMP, etc." oninvalid="this.setCustomValidity('Please enter a stock symbol.')"
oninput="this.setCustomValidity('')" autocomplete='off' required> <br>
<button role="button" id='searchButton' type="submit">Search</button>
</form>
<form role ='link' action="https://www.marketwatch.com/game" target='_blank'>
<input id='virtPortButton' role='button' type="submit" value="Start a Virtual Portfolio" />
</form>
</section>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="index.js"></script>
</main>
</body>
</html>