-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>CS291A F19 | Jake Guida</title>
<link rel="stylesheet" type="text/css" href="./css/main.css">
</head>
<body>
<h1>
Jake Guida's Website for CS291A Project 0
</h1>
<h2>A fancy image</h2>
<img src="./torch.jpg">
<h3>List of important things:</h3>
<ul>
<li>food</li>
<li>water</li>
<li>air</li>
</ul>
<h3>Table of important information:</h3>
<table>
<tr>
<th>food</th>
<th>water</th>
<th>air</th>
</tr>
<td>solid</td>
<td>liquid</td>
<td>gas</td>
<tr>
<td>eat</td>
<td>drink</td>
<td>breathe</td>
</tr>
<tr>
<td>hungry</td>
<td>thirsty</td>
<td>tired</td>
</tr>
</table>
<a href="https://github.com/jlguida/CS291AF19P0">link to source code</a>
</body>
</html>