-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.32 KB
/
index.html
File metadata and controls
39 lines (34 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is a website about my cat Jesko. He is 10 months old, a bombay cat and is a lazy bum(but very cute)">
<title>Jesko the Cat</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div id="header">
<h1>Meet Jesko!</h1>
<p class="highlight">Jesko loves to play with string toys and take naps!</p>
</div>
<!-- Main Content Section -->
<div class="content">
<img src="jesko.jpg" alt="A picture of Jesko the cat" class="jesko-image">
<p class="highlight">Jesko's favorite hobbies are to sleep, eat treats, and play around(only at 3am though).</p>
</div>
<!-- Fun Facts Section -->
<div class="content">
<h2>Fun Facts About Jesko</h2>
<ul>
<li>Jesko’s favorite food is chicken.</li>
<li>He enjoys watching people passing by from his window.</li>
<li>Jesko takes naps for hours.</li>
</ul>
</div>
<!-- External Link -->
<div class="links">
<p>Here is the car that Jesko is named after: <a href="https://www.koenigsegg.com/model/jesko-attack" target="_blank">Jesko Attack </a></p>
</div>
</body>
</html>