-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Cats!</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<h1>This page is about cats!</h1>
<h2>Specifically, my cat Dante.</h2>
<p>Check out this picture of him</p>
<img src="imgs/cat.jpg" alt="My cat, Dante">
<p>Why do I like my cat? For at least three reasons:</p>
<ul>
<li>He's a model cat (unofficially)</li>
<li>He's very fluffy</li>
<li>He likes to hang out with me</li>
</ul>
<p>Now, you may be wondering 'What does Dante eat?' Well, you're in for a treat, because here's an easy guide:</p>
<table class=center>
<tr>
<th>Food</th>
<th>Does Dante eat it?</th>
</tr>
<tr>
<td>Kibbles</td>
<td>Yes</td>
</tr>
<tr>
<td>Pancakes</td>
<td>Yes</td>
</tr>
<tr>
<td>Cauliflower</td>
<td>No</td>
</tr>
</table>
<p>The source code for this page is located on Github <a href="https://github.com/lucasrelic99/cs291-proj0">here</a>.</p>
</body>
</html>