Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add lion folder and resoruces, fixed lion hyperlink #4

Merged
merged 2 commits into from
Feb 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eric/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1 class="header">Eric's Zoo</h1>
<body>
<p1><strong>Come See Our Animals</strong></p1>

<ul class="box"><strong>Lion <a href="file:///C:/Users/ericm/Documents/Spring%202022/Web%20Dev/Zoo/lion/Lion.html">here</a>!</strong></ul>
<ul class="box"><strong>Lion <a href="/lion/Lion.html">here</a>!</strong></ul>
<ul class="box"><strong>Tiger <a href="file:///C:/Users/ericm/Documents/Spring%202022/Web%20Dev/Zoo/tiger/Tiger.html">here</a>!</strong></ul>
<ul class="box"><strong>Zebra <a href="file:///C:/Users/ericm/Documents/Spring%202022/Web%20Dev/Zoo/zebra/Zebra.html">here</a>!</strong></ul>
<ul class="box"><strong>Elephant <a href="file:///C:/Users/ericm/Documents/Spring%202022/Web%20Dev/Zoo/elephant/Elephant.html">here</a>!</strong></ul>
Expand Down
21 changes: 21 additions & 0 deletions eric/lion/Lion.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<form>
<input type="button" value="Go back!" onclick="history.back()">
</form>
<title>Lion</title>
<h1 class="header">Introducing the Lion</h1>
</head>
<body>
<ul><img src="img/lion.png"></ul>
<div class = "box">
<p1>
The lion (Panthera leo) is a large cat of the genus Panthera native to Africa and India. It has a muscular, deep-chested body, short, rounded head, round ears, and a hairy tuft at the end of its tail. It is sexually dimorphic; adult male lions are larger than females and have a prominent mane. It is a social species, forming groups called prides. A lion's pride consists of a few adult males, related females, and cubs. Groups of female lions usually hunt together, preying mostly on large ungulates. The lion is an apex and keystone predator; although some lions scavenge when opportunities occur and have been known to hunt humans, the species typically does not.
</p1>
</div>
</body>


</html>
Binary file added eric/lion/img/background1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added eric/lion/img/background2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added eric/lion/img/lion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions eric/lion/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
html {
background-color: rgb(255, 153, 0);
background-image: url(img/background1.jpg);
padding: 10px;

}

.header {
color: rgb(255, 0, 0);
font-family: Monaco, monospace;
text-align: center;
border: 10px solid rgb(0, 0, 0);
font-size: 50px;
background-color: rgb(0, 0, 0);
}
.box {
margin: auto;
background-color: brown;

font-size: 35px;
}
body {
text-align: center;
border-color: 10px solid black;
}
form {
text-align: left;
}