-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby.html
More file actions
42 lines (42 loc) · 1.36 KB
/
ruby.html
File metadata and controls
42 lines (42 loc) · 1.36 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
40
41
42
<!doctype html>
<html>
<head> <link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Lobster&display=swap" rel="stylesheet">
<title>Cats, an informational website</title>
<link href="style.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, intial-scale=1">
</head>
<body>
<header>
<h1>Cats, an informational website </h1>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="ruby.html">My Cat</a>
</li>
<li>
<a href="species.html">Species</a>
</li>
<li>
<a href="videos.html">Videos</a>
</li>
</ul>
</nav>
</header>
<main>
<!--main content goes here-->
<article class="item">
<h1>Ruby, My cat </h1>
<p>This is my 2 year old Blue-point Ragdoll, called Ruby</p>
<p>I was blessed with this cat near my birthday, However now she doesn't sleep with me anymore, she sleeps with either my mum or my sisters.</p>
<p>Ruby's mood changed like the direction of he wind. One minute she's fine, and calm... and the next minute, she's sprinting down the hallway as fast as she can.</p>
<img src="Ruby.jpg" alt="Photo of my blue-point ragdoll named Ruby.">
</article>
<!--end of main content-->
</main>
<footer>
<p>© Copyright 2020 Ayden Gaydzis-Shaw</p>
</footer> </body>
</html>