From b841737047181de22e8382380df84c510c89adcf Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: rescue 4 --- 04/about.html | 66 ++++++++++++++++++++++++++++++++++ 04/contact.html | 45 ++++++++++++++++++++++++ 04/css/styles.css | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 04/index.html | 58 ++++++++++++++++++++++++++++++ 04/question.txt | 7 ++++ 04/template.html | 39 +++++++++++++++++++++ 6 files changed, 318 insertions(+) create mode 100644 04/about.html create mode 100644 04/contact.html create mode 100644 04/css/styles.css create mode 100644 04/index.html create mode 100644 04/question.txt create mode 100644 04/template.html diff --git a/04/about.html b/04/about.html new file mode 100644 index 0000000..6935864 --- /dev/null +++ b/04/about.html @@ -0,0 +1,66 @@ + + + + +Wild Rescues: About Us + +
+ + rescued baby hawk + +
+ + + + +
+
+

About Us

+

Wild Rescues is a registered nonprofit wildlife + rescue and rehabilitation facility, located in Ocala, + Florida. We help injured, sick, neglected, and orphaned + wildlife. We help rehabilitate these animals and then + release them back into the wild, if possible.

+

Wild Rescues is a member of the + + National Wildlife Rehabilitators Association. +

+ + tortoise eating vegetation + +

We help many animals, such as:

+ + +

Did you find an injured or orphaned animal? + Contact us to see if we can help.

+
+
+ + + + diff --git a/04/contact.html b/04/contact.html new file mode 100644 index 0000000..b5ed9d3 --- /dev/null +++ b/04/contact.html @@ -0,0 +1,45 @@ + + + + +Wild Rescues: Contact + +
+ + rescued baby hawk + +
+ + + + +
+
+

You can reach us at:

+

Office: (814) 555-8989

+ + +
+
+ + + + diff --git a/04/css/styles.css b/04/css/styles.css new file mode 100644 index 0000000..f852066 --- /dev/null +++ b/04/css/styles.css @@ -0,0 +1,103 @@ +/* + Author: Name Surname + File Name: styles.css + Date: 2024/09/10 +*/ + +/* CSS Reset */ +body,header,nav,main,footer,img,h1,h3{ + margin: 0px; + padding: 0px; + border: 0px; +} + + +/* Style rules for body and images */ +body{ + background-color: #F6EEE4; +} + +img{ + max-width: 100%; + display: block; +} + +/* Style rules for navigation area */ +nav{ + background-color: #2A1F14; +} + +nav ul{ + list-style: none; + margin: 0px; + text-align: center; +} + +nav li{ + display: inline-block; + font-size: 1.5em; + font-family: Geneva,Arial,sans-serif; + font-weight: bold; +} + +nav li a{ + display: block; + color: #F6EEE4; + padding-top: 0.5em; + padding-bottom: 0.5em; + padding-left: 2em; + padding-right: 2em; + text-decoration: none; +} + +/* Style rules for main content */ +main{ + padding: 2%; + font-family: Verdana,Arial,sans-serif; +} + +main p{ + font-size: 1.25em; +} + +main h3{ + padding-top: 2%; +} + +main ul{ + list-style: square; +} + +.link{ + color: #4D3319; + text-decoration: none; + font-weight: bold; + font-style: italic; +} + +.action{ + font-size: 1.75em; + font-weight: bold; + text-align: center; +} + +#contact{ + text-align: center; +} + +/* Style rules for footer content */ +footer{ + text-align: center; + font-size: 0.85em; + background-color: #2A1F14; + color: #F6EEE4; + padding-top: 1%; + padding-bottom: 1%; + padding-left: 0%; + padding-right: 0%; +} + +footer a{ + color: #F3E6D8; + text-decoration: none; +} diff --git a/04/index.html b/04/index.html new file mode 100644 index 0000000..1ffeee3 --- /dev/null +++ b/04/index.html @@ -0,0 +1,58 @@ + + + + +Wild Rescues: Home + +
+ + rescued baby hawk + +
+ + + + +
+
+

Welcome to Wild Rescues. Our mission is to rescue, + rehabilitate, and release wildlife back into their natural + environment. We are a nonprofit organization dedicated to + helping injured wildlife.

+ +

Our staff provides around-the-clock care for wildlife + in need. We also provide long-term care for wildlife that + cannot be released back into their natural environment.

+ +

Will you partner with us question mark We need caring + volunteers to help care for our animals. You can also donate, + become a member, or become a sponsor. Contact us today.

+
+
+

Our Latest Rescue: Baby Raccoons

+ hands holding three baby raccoons +

Our latest rescues, Fizz, Bandit, and Mohawk. These + three little guys were found abandoned near a home.

+
+
+ + + + diff --git a/04/question.txt b/04/question.txt new file mode 100644 index 0000000..38d8f13 --- /dev/null +++ b/04/question.txt @@ -0,0 +1,7 @@ +Question: +In this assignment, you specified several hexadecimal color values. Find the +RGB and HSL color value codes for two hexadecimal colors used in this lab. + +Answer: +#F6EEE4 is equivalent to rgb(246,238,228) in RGB and hsl(33.3,50%,92.9%) in HSL. +#2A1F14 is equivalent to rgb(42,31,20) in RGB and hsl(30,35.5%,12.2%) in HSL. diff --git a/04/template.html b/04/template.html new file mode 100644 index 0000000..bfac2c1 --- /dev/null +++ b/04/template.html @@ -0,0 +1,39 @@ + + + + +Wild Rescues: Template + +
+ + rescued baby hawk + +
+ + + + +
+
+
+
+ + + + -- cgit 1.4.1