-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.33 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOW Average</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="app.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="style.css" rel="stylesheet" >
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<div class="precent"></div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="today"></div>
<div class="todayLabel">Today</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="high"> 29,568.57 </div>
<div class="highLabel"> Feb. 12</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="diff"></div>
</div>
</div>
</div>
</body>
</html>