forked from cifo-training/basics-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
42 lines (38 loc) · 1.74 KB
/
Copy pathindex2.html
File metadata and controls
42 lines (38 loc) · 1.74 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Cats and Dogs</title>
<link rel="stylesheet" href="css/mycss2.css">
</head>
<body>
<div class="Principal">
<main>
<h1>Cats and Dogs</h1>
<div>
<h4>I have a cat, and am thinking of getting a dog. Will they fight?</h4>
</div>
<div>
<p>
The idea that dogs hate cats may have born because dogs chase cats and grew because cartoons depicted ongoing battles between the two species.
Or it may have been generated because some dog people strongly dislike cats and some cat people disdain dogs.
However, dogs and cats can live peaceablye as long as owners understand the behaviors of each.
</p>
<p>
In some cases, a resident cat will isolate itself when a puppy is added to the family.
I other cases, cats and dogs never get used to each other.
In still other cases, cat or kitten and dog or puppy play together and build a friendship that finds them curled up together in a create o bed and drinking out of the same bowl.
The type of relationship developed in each household depends on the personality of the animals and the understanding of the owners.
</p>
</div>
</main>
<footer>
<p>
[From Dog Owner's Guide: Fighting furry furies? (www.canismajor.com/dog/furfury.html)]
</p>
</footer>
</div>
</body>
</html>