-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 935 Bytes
/
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
47
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Activity 1: Basic HTML Alex BIO</title>
</head>
<body>
<h1>Your Name</h1>
<img src="pic.jpg" alt="Alex" width="500px">
<p>Im taking the Georgia Tech Data Analytics Bootcamp</p>
<ul>
<li><strong>Email:</strong> <a href="#">[email protected]</a></li>
<li><strong>Github:</strong> <a href="#">anovas2</a></li>
<li><strong>Twitter:</strong> <a href="#">Neva player</a></li>
</ul>
<table>
<tr>
<th>Books</th>
<th>Movies</th>
<th>Games</th>
</tr>
<tr>
<td>The Hobbit</td>
<td>Hot Fuzz</td>
<td>Dark Souls</td>
</tr>
<tr>
<td>The Name of the Wind</td>
<td>The Avengers</td>
<td>The Last of Us</td>
</tr>
<tr>
<td>The Girl With All the Gifts</td>
<td>The Matrix</td>
<td>Dragon Age: Origins</td>
</tr>
</table>
</body>
</html>