-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (123 loc) · 4.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="image/nature.png" />
<title>Nature Website</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="css/w3.css" />
<link rel="stylesheet" href="css/w3pro.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<script src="js/w3.js"></script>
<script src="https://www.w3schools.com/lib/w3.js"></script>
</head>
<body>
<!-- Navigation (Stays on Top) -->
<div id="navDemo" class="w3-top w3-bar w3-black w3-padding-16 w3-mobile">
<a href="index.html"
><img
class="w3-display-left"
src="image/nature.png"
style="width: 60px; padding-left: 10px"
/></a>
<div style="padding-left: 60px">
<a href="index.html" class="w3-bar-item w3-button">Home</a>
<a href="about.html" class="w3-bar-item w3-button">About</a>
<a href="#members" class="w3-bar-item w3-button">Members</a>
<a href="contact.html" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
<!-- slideshow -->
<div class="w3-container" style="padding: 0%">
<div>
<img
class="nature"
src="image/w3image.jpg"
style="width: 100%"
alt="nature"
/>
<img
class="nature"
src="image/w3image4.jpg"
style="width: 100%"
alt="nature"
/>
<img
class="nature"
src="image/w3image5.jpg"
style="width: 100%"
alt="nature"
/>
</div>
</div>
<div class="w3-row w3-padding-16">
<div class="w3-third w3-card-4 w3-dark-grey">
<a href="animal/Eagle.html"
><img src="image/w3image1.jpg" alt="Name1" style="width: 100%"
/></a>
<div class="w3-container w3-center">
<p class="w3-xlarge">Eagle</p>
<p>Accipitridae</p>
</div>
</div>
<div class="w3-third w3-card-4 w3-dark-grey">
<a href="animal/cat.html"
><img src="image/w3image2.jpg" alt="Name2" style="width: 100%"
/></a>
<div class="w3-container w3-center">
<p class="w3-xlarge">Cat</p>
<p>Domestic Species</p>
</div>
</div>
<div class="w3-third w3-card-4 w3-dark-grey">
<a href="animal/lion.html"
><img src="image/w3image3.jpg" alt="Name3" style="width: 100%"
/></a>
<div class="w3-container w3-center">
<p class="w3-xlarge">Lion</p>
<p>Panthera Leo</p>
</div>
</div>
</div>
<div class="w3-row w3-padding-16">
<div class="w3-third w3-card-4 w3-dark-grey">
<a href="animal/peacock.html"
><img src="image/w3image6.jpg" alt="Name1" style="width: 100%"
/></a>
<div class="w3-container w3-center">
<p class="w3-xlarge">Peacock</p>
<p>National bird</p>
</div>
</div>
<div class="w3-third w3-card-4 w3-dark-grey">
<a href="animal/tiger.html"
><img src="image/w3image7.jpg" alt="Name2" style="width: 100%"
/></a>
<div class="w3-container w3-center">
<p class="w3-xlarge">Tiger</p>
<p>The national animal</p>
</div>
</div>
<div class="w3-third w3-card-4 w3-dark-grey">
<a href="animal/butterfly.html"
><img src="image/w3image8.jpg" alt="Name3" style="width: 100%"
/></a>
<div class="w3-container w3-center">
<p class="w3-xlarge">Butterfly</p>
<p>Superfamily Papilionoidea</p>
</div>
</div>
</div>
<div class="w3-container w3-black w3-center w3-padding-16 footer">
<a href="#help" class="w3-bar-item w3-button">Help</a>
<a href="#send feedback" class="w3-bar-item w3-button">Send feedback</a>
<a href="#privacy policy" class="w3-bar-item w3-button">Privacy Policy</a>
<a href="#terms of service" class="w3-bar-item w3-button"
>Terms of Service</a
>
</div>
</body>
</html>
<script>
w3.slideshow(".nature", 2000);
</script>