-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (62 loc) · 2.46 KB
/
index.html
File metadata and controls
71 lines (62 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project - Day 1 (Day 15)</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg_color">
<!-- Header section starts. -->
<header class="header">
<!-- In case it goes: https://o.remove.bg/downloads/96b84e23-15b7-42f2-bbac-924db58357b5/2282239_1_-removebg-preview.png -->
<div class="logo_box">
<img class="tiger_logo"
src="logo.png"
alt="">
</div>
<nav class="nav">
<a class="links" href="index.html">Home</a>
<a class="links" href="conservations.html">Conservations</a>
<a class="links" href="tiger reserves.html">Tiger Reserves</a>
<a class="links" href="types of tigers.html">Tiger Types</a>
<a class="links" href="contact us.html">Contact Us</a>
<a class="links" href="about.html">About this Project</a>
<a class="links" href="developer.html">About the Developer</a>
</nav>
</header>
<!-- Main section starts. -->
<main class="section">
<br>
<h1>Home</h1>
<br>
<span class="medium_text">This website is about <strong>tigers.</strong></span>
<br><br>
<img class="baby_tiger"
src="https://images.pexels.com/photos/2541239/pexels-photo-2541239.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="baby_tiger">
<br>
<h3>We'll learn about:</h3>
<ul class="learn">
<li><a href="conservations.html">Conservations</a></li>
<li><a href="tiger reserves.html">Tiger Reserves</a></li>
</ul>
<br><br>
<span class="border">
<a href="https://en.wikipedia.org/wiki/Tiger">Click Here</a>
to go to the Tigers Wikipedia Page.
-or-
<a href="https://kids.nationalgeographic.com/animals/mammals/facts/tiger">Click Here</a>
to go to the National Geographic Page
</span>
<br><br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/_UbDeqPdUek"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<br>
<span><i>Tiger cubs meet adult tigers.</i></span>
</main>
</body>
</html>