From fa2ad161e3021d4885dbc118b77a174c84a74cca Mon Sep 17 00:00:00 2001 From: Andrej Rasevic <andrej@rasevicengineering.com> Date: Sat, 8 Jan 2022 21:01:21 -0500 Subject: [PATCH] adding exercise 1 --- exercises/exercise1/Exercise1_Description.md | 7 +++++++ exercises/exercise1/starterCode/index.html | 13 +++++++++++++ exercises/exercise1/starterCode/style.css | 2 ++ 3 files changed, 22 insertions(+) create mode 100644 exercises/exercise1/Exercise1_Description.md create mode 100644 exercises/exercise1/starterCode/index.html create mode 100644 exercises/exercise1/starterCode/style.css diff --git a/exercises/exercise1/Exercise1_Description.md b/exercises/exercise1/Exercise1_Description.md new file mode 100644 index 0000000..0aa8256 --- /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 0000000..aae3585 --- /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 0000000..fa42261 --- /dev/null +++ b/exercises/exercise1/starterCode/style.css @@ -0,0 +1,2 @@ +/*Your CSS SHould go here*/ + -- GitLab