-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 2.69 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
<link rel="shortcut icon" href="./images/pawprint.png" type="image/x-icon">
<title>My Favourite Animal</title>
</head>
<body>
<a href="#dog-breeds">
<header>
<div style="display: inline-block;">
<img src="./images/icons8-dog-64.png" alt="dog icon">
A website for Dogs and Cats! by 18BCE0557 KUSHAL
<img src="./images/icons8-cat-64.png" alt="cat icon">
</div>
</header>
</a>
<div class="row">
<div class="column">
<img class="image" src="./images/dog2.jpg" alt="dog 2" style="float: left;">
</div>
<div class="column">
<img class="image" src="./images/cat1.jpg" alt="cat 1" style="float: right;">
</div>
</div>
<div class="row">
<div class="column">
<h3 style="float: left;" class="h3">Qualities of Dogs</h3>
</div>
<div class="column">
<h3 style="float: right;" class="h3">Qualities of Cats</h3>
</div>
</div>
<div class="row">
<div class="column" style="float: left;">
<ol>
<li>Loyalty</li>
<li>Unconditional Love</li>
<li>Internal and External Satisfaction</li>
<li>Simple Mindset</li>
<li>Being Selfless</li>
</ol>
<h4 class="h4">Read More by clicking <a href="https://medium.com/@AceGreen1989/5-characteristics-we-should-learn-from-dogs-c569acf811ac" target="_blank">here</a></h4>
</div>
<div class="column" style="float: right;">
<ol>
<li>Loving and Caring</li>
<li>Curious</li>
<li>Playful</li>
<li>Cuddly</li>
<li>Adventurous</li>
</ol>
<h4 class="h4">Read More by clicking <a href="https://www.lovemeow.com/top-15-cat-qualities-1607997052.html" target="_blank">here</a></h4>
</div>
</div>
<hr>
<div style="text-align: center; margin-bottom: 5px;"><a href="./dog_breeds.html" id="dog-breeds"><h3>Let's talk about Dog Breeds</h3></a></div>
<div style="text-align: center; margin-bottom: 3px; border: 2px solid lightblue;">Afghan Hound</div>
<div style="text-align: center; margin-bottom: 3px; border: 2px solid lightblue;">Aussiepom</div>
<div style="text-align: center; margin-bottom: 3px; border: 2px solid lightblue;">Bocker</div>
</body>
</html>