-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
40 lines (29 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Significant Earthquakes, past 30 days.</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Local CSS styles -->
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="container">
<header class="jumbotron text-center">
<h2>Significant Earthquakes, past 30 days.</h2>
<h3><div class="summary">Total Number of Earthquakes: <span class="amount"> valor aqui</span></div></h3>
</header>
<section class="content container">
<div id="tablePrint"> </div>
</section>
</div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Local JavaScript -->
<script src="js/index.js"></script>
</body>
</html>