-
Notifications
You must be signed in to change notification settings - Fork 0
/
article.html
77 lines (69 loc) · 3.6 KB
/
article.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>CatFeed</title>
<head>
<link href="styles/style.css" rel="stylesheet" type="text/css" />
</head>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script>
$(document).ready(function () {
console.warn("hello");
$("#header").load("header.html");
$("#side-nav").load("sidenav.html");
$("#right-panel").load("rightpanel.html");
$("#leaderboard-ad-1").load("acrossad.html");
});
</script>
<body>
<div id="page">
<div id="header">
</div>
<div id="content">
<div id="side-nav">
</div> <!-- /side-nav -->
<div id="article-panel">
<div class="across-ad" id="leaderboard-ad-1">
</div>
<div class="article-header">
<div class="article-label">
<p>ARTICLE</p>
</div>
<h1 class="title">Ragamuffin cat</h1>
</div>
<div class="article-body">
<div class="infobox">
<img src="/images/ragamuffin.png" />
<p>Photo</p>
</div>
<span style="color:#2c5e5d">Ragamuffin cats.</span>
<span>Let's talk about them! These fluffy furballs are like walking clouds with
personalities. Picture this: big, adorable eyes that could melt your heart, fluffy tails waving
like banners, and a body that's just made for snuggles. Ragamuffins are like the gentle giants
of the cat world, all thanks to their Ragdoll ancestors. They've got that same chill vibe and
sweet nature that makes them awesome pals.</span>
<br />
<br />
<p> What's super cool about Ragamuffins is their laid-back attitude. They're like the cool kids who
are down for whatever - whether it's playtime with you or just lounging around the house. These
cats are total love bugs, always up for a cuddle session or a game of chase. And guess what?
They're not just for solo pet life - Ragamuffins can totally hang with other pets and even rowdy
siblings!
</p>
<br />
<h2>If you're adopting</h2>
<br />
<p>
If you're looking to adopt a Ragamuffin cat, get ready for a purr-fect addition to your family!
These fluffy companions are often available through reputable breeders or rescue organizations.
Before bringing home your new feline friend, it's essential to consider factors like space, time
for grooming, and financial responsibilities. Ragamuffins thrive in loving homes with plenty of
attention and playtime, so be prepared to shower them with affection. Whether you're adopting a
kitten or an adult cat, the joy and companionship a Ragamuffin brings into your life will
undoubtedly make every moment worthwhile.</p>
</div>
</div> <!-- /article-panel -->
<div id="right-panel">
</div> <!-- /right-panel -->
</div> <!-- /content -->
</div>
</body>