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.
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
+
+
Our latest rescues, Fizz, Bandit, and Mohawk. These
+ three little guys were found abandoned near a home.
+
+
+
+
+
+
diff --git a/05/question.txt b/05/question.txt
new file mode 100644
index 0000000..83ed51e
--- /dev/null
+++ b/05/question.txt
@@ -0,0 +1,34 @@
+Question:
+You have learned how to add id and class attributes to an HTML
+element. Can an HTML element contain both an id and a class value?
+If so, provide an example of a style rule for the id and the class.
+
+Answer:
+Elements in HTML can use both a class and an id. In fact, I just
+did this during my unit 1 project. Here is the CSS I used, as
+well as an example of div elements using both a class and an id.
+
+CSS:
+.col{
+ position: fixed;
+ width: 30%;
+ height: 100%;
+ overflow-x: hidden;
+ z-index: 1;
+}
+#left{
+ left: 0;
+ padding-left: 18%;
+}
+#right{
+ right: 0;
+ padding-right: 18%;
+}
+
+HTML:
+