-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
38 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="FCC local weather app" />
<meta name="author" content="Nashville FCC" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<title>Hello world!</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col px-lg-5">
<div class="jumbotron">
<h1 class="display-4">Your local temperature</h1>
<hr class="my-4" />
<span>The temperature is</span>
<span id="theTemp">99</span>
<span>° Fahrenheit.</span>
</div>
</div>
</div>
</div>
<script src="code.js"></script>
</body>
</html>