-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 1.03 KB
/
index.html
File metadata and controls
33 lines (27 loc) · 1.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Flufly</title>
<link href="https://bootswatch.com/4/lux/bootstrap.min.css" rel="stylesheet">
<link href="css/style-custom.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="#">Flufly</a>
</nav>
<main role="main" class="container">
<div class="jumbotron">
<h1 class="display-3">Welcome to Flufly!</h1>
<p class="lead">Below are the most current exchange rates (in USD) of the top cryptocurrency.</p>
<hr class="my-4">
</div>
<div id="coins"> <!-- would be added using jquery -->
</div>
</main><!-- /.container -->
<script src="js/jquery-3.3.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"> </script>
<script src="js/script.js"></script>
</body>
</html>