diff --git a/exercises/exercise1/Exercise1_Description.md b/exercises/exercise1/Exercise1_Description.md new file mode 100644 index 0000000000000000000000000000000000000000..0aa8256ed5ae4a9c79acacca0cfb2d395d74280e --- /dev/null +++ b/exercises/exercise1/Exercise1_Description.md @@ -0,0 +1,7 @@ +# Exercise 1: + +## Due Date: Tuesday, January 11, 2022 11:59 PM +## Objectives: To get familiar with writing basic HTML and gain practice with our git workflow for distributiing course materials and submitting projects. + +## Specifications/Requirements +1. Starting with the `index.html` starter file we have provided you with. You need to create a webpage that will display a list of courses that a student would have taken over 2 semesters. Each semester should contain at least 3 courses, so your list should be a list of lists. Any lists you define should also be an unordered list. Additionally, your web page needs to have a title tag that will name your web page __My Course Schedule__ You will need to commit your changes and push them to your reposiroy on the University Gitlab server. diff --git a/exercises/exercise1/starterCode/index.html b/exercises/exercise1/starterCode/index.html new file mode 100644 index 0000000000000000000000000000000000000000..aae35851c78a896ed76fa0b09586c46809269c4e --- /dev/null +++ b/exercises/exercise1/starterCode/index.html @@ -0,0 +1,13 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <!-- For responsive page --> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + + </head> + + <body> + + </body> +</html> \ No newline at end of file diff --git a/exercises/exercise1/starterCode/style.css b/exercises/exercise1/starterCode/style.css new file mode 100644 index 0000000000000000000000000000000000000000..fa42261aa7785477527940964114df71a3abaa7c --- /dev/null +++ b/exercises/exercise1/starterCode/style.css @@ -0,0 +1,2 @@ +/*Your CSS SHould go here*/ +