forked from kalecodes/markets-today
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (51 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Markets Today</title>
</head>
<body class="container">
<header class="row header">
<h1>Crypto Today</h1>
<p>The easy way to compare crypto</p>
</header>
<section class="row search-section">
<div class="four columns">
<div class="search-box u-max-full-width">
<h3>Crypto Search</h3>
<label for="searchEl">Enter the name of a cryptocurrency</label>
<input type="text" id="searchEl" class="u-max-full-width"/>
<button id="submitBtn" class="button-primary" type="submit">Search</button>
</div>
<div class="history-box">
<h4 id=historyTitle></h4>
<ul id="historyList">
</ul>
</div>
</div>
<div id="search-results" class="eight columns results-box">
</div>
</section>
<section class="row news-section">
<div id="news-results" class="">
</div>
</section>
<section class="row cards-section">
<div class="six columns">
<h4>Top Cryptocurrencies Today:</h4>
<div id="topCryptos" class="row">
</div>
</div>
<div class="six columns">
<h4>Your Recently Viewed:</h4>
<div id="recent-cards">
</div>
</div>
</section>
<script src="./assets/js/script.js"></script>
</body>
</html>