-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiet.html
More file actions
74 lines (71 loc) · 3.03 KB
/
diet.html
File metadata and controls
74 lines (71 loc) · 3.03 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
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
<!doctype html>
<html>
<head>
<title>Dogs: The Informational Website</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Dogs: The Informational Website</h1>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="history.html">History of Dogs</a>
</li>
<li>
<a href="police.html">Why dogs are used in the police force</a>
</li>
<li>
<a href="diet.html">What Dogs Eat</a>
</li>
<li>
<a href="belle.html">My Dog</a>
</li>
</ul>
</nav>
</header>
<main>
<!--Main content here-->
<article class="item">
<h2>What is a dogs normal diet?</h2>
</article>
<article class="item">
<p>Before I go over what a dog’s diet is, I need to mention this.</p>
<p>Every dog is different, and there is no one true way to know what your dog can eat. You should always ask your veterinarian about what your dog can eat, and read only from trusted sources. In the case of this, the websites I have used for this will be at the bottom of this page.</p>
<p>Dr. Leigh from Your Vet Online advises that it is important to ensure your dog’s food is both complete and balanced for its stage of life, and if it has any medical issues.
The RSPCA, or the Royal Soiety for the Prevention of Cruelty to Animals (if you feel so inclined), says that it is entirely acceptable to feed your dog a pure kibble diet, or you can mix it up with some cooked or raw meat. Dr. Leigh suggests the following,</p>
<ul>
<li>Choose human-grade meat as some pet meat and bone products will contain preservatives that can be bad for your dog’s health.</li>
<li>Practice impeccable food hygiene as the risk of both you and your dog getting a food-borne bacterial infection such as campylobacter or salmonella is high</li>
<li>Have a veterinary nutritionist formulate the diet for you. Many raw diets are not balanced appropriately for stage of life or medical conditions.</li>
</ul>
<p>Website used: <a href="https://www.rspcapetinsurance.org.au/pet-care/dog-care/what-should-feed-dog">https://www.rspcapetinsurance.org.au/pet-care/dog-care/what-should-feed-dog</a></p>
</article>
<article class="item">
<h2>The weird stuff dogs love to eat</h2>
</article>
<article class="item">
<p>Let’s be honest, dogs love to eat. They are constantly wanting to eat whatever they can find. But what if I told you that there are people that feed their dogs some of the weirdest stuff imaginable, this includes...</p>
<ul>
<li>Peanut Butter</li>
<li>Cheese</li>
<li>Yogurt</li>
<li>Baby Carrots</li>
<li>Broccoli</li>
<li>Ice cubes</li>
<li>Banana</li>
<li>Watermelon</li>
</ul>
<p>There are a lot more that I didn’t list, but these are just a few things that dogs love to eat that are… more or less weird.</p>
</article>
</main>
<footer>
<p>© 2021 Ayden Gaydzis-Shaw</p>
</footer>
</body>
</html>