-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (40 loc) · 934 Bytes
/
index.html
File metadata and controls
48 lines (40 loc) · 934 Bytes
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
48
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Activity 1: Basic HTML Bio</title>
</head>
<body>
<h1>Jessica</h1>
<img src="https://placehold.it/200x200" alt="Jessica">
<p>Some placeholder text.</p>
<p>Some placeholder text.</p>
<ul>
<li><strong>Email:</strong> <a href="#">someplace@gmail.com</a></li>
<li><strong>Github:</strong> <a href="#">Jess88</a></li>
<li><strong>Twitter:</strong> <a href="#">N/A</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>