-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (46 loc) · 1.83 KB
/
about.html
File metadata and controls
52 lines (46 loc) · 1.83 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
<!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>About</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg_color">
<!-- Homework:
1. Create two files [About.html explains the project and
Developer.html is to explain and add a picture of
yourself.] and add that file to the anchor tags in
the nav with the classes -->
<header class="header">
<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>
<h1>About this Project</h1>
<br><br>
<img class="tiger_lake"
src="https://images.pexels.com/photos/2689436/pexels-photo-2689436.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="tiger_by_lake">
<br>
<span><i>Tiger by lake.</i></span>
<br><br>
<p class="huge_text">This project is made raise made to raise
awarness that tigers are an endangered species. This
project shows the different things you can learn about
tigers and conservations to help understand their behaviors
and habitats.</p>
</body>
</html>