-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<nav id="topnav" class="topnav">
<a id="TopNav1" href="index.html" style="text-decoration:none">TopNav Item 1</a>
<a id="TopNav2" href="index.html" style="text-decoration:none">TopNav Item 2</a>
<a id="TopNav3" href="index.html" style="text-decoration:none">TopNav Item 3</a>
</nav>
<title>World COVID-19 Data</title>
<!--Setting the viewport for different sized devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--what is happening here?-->
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="sorryNotSorry"><h1>World COVID-19 Data</h1></header>
<section id="countryTableSection" class="content">
</section>
<section class="content">
<h2>Other Resources</h2>
<ul>
<li>
<a href="https://github.com/DavisFairchild/COVID-data-website">Github Repository</a>
</li>
<li>
<a href="https://covid19-api.org/api/status">COVID-19 API Data Used</a>
</li>
<li>
<a href="https://www.theodinproject.com/">The Odin Project</a>
</li>
</ul>
<!-- blank map: https://commons.wikimedia.org/wiki/File:Simplified_blank_world_map_without_Antartica_(no_borders).svg -->
<img src="images/blank-world-map.png" alt="world map" id="I_forgot_how_to_select_alt_in_css">
</section>
<section class="content">
<h2><u>About</u></h2>
<a>Alpha version 0.3(?) of a website two friends made as a summer project to collect data on a relevant global event as practice, but also becuase
one of the friends realized the other one needed <i>something</i> they could put on their resume and so he got him to actually do this stuff.
</a>
</section>
<!-- Javascript -->
<script src="script.js"></script>
</body>
</html>
<!-- Test -->