-
Notifications
You must be signed in to change notification settings - Fork 0
/
jose.html
45 lines (44 loc) · 1.08 KB
/
jose.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
<html>
<head>
<title>
Jose's Sample Page
</title>
<style>
.marvin {
font-family: verdana;
font-size: 40px;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</head>
<body>
<div class="alert alert-primary" role="alert"">
Covid-19 Infections/Deaths by Country
</div>
<div>
This is another div
</div>
<table border=1>
<tr>
<td>Country Name</td>
<td>Infected Count</td>
<td>Death Count</td>
</tr>
<tr>
<td>USA</td>
<td>1,500,000</td>
<td>130,000</td>
</tr>
</table>
<div>
<h4>
Leaning goals
</h4>
</div>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>Graphic Design</li>
</ol>
</body>
</html>