diff --git a/Task 2/index.html b/Task 2/index.html new file mode 100644 index 0000000..e60365f --- /dev/null +++ b/Task 2/index.html @@ -0,0 +1,131 @@ + + + + + + + HTML Task 2 + + + +
+

Inside of header - let's add a navbar with some essential links

+

Home About Contact

+
+
+
+

Here is the main section of our page - it consists of a new articles

+

Article 1 - 1995 was crazy year for programming languages!

+

Don't believ me? Just check this table out:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LanguageDesigned byFirst Appeared
C++Bjurne Stroustrup1983
PythonGuido van Rossum1991
RubyYukihiro Matsumoto("Matz")1995
JavascriptBredan Each1995
JavaJames Gostling1995
PHPRasmus Lendeof1995
+

Article 2 - Comming soon...

+

Contact us!

+

General Information

+
+
+
+
+ +
+

Essential Questions

+
+

What kind of work do yo need?

+
+
+
+
+
+
+

How interested are you in our design skills?

+
+
+
+
+
+ +
+ +
+ + \ No newline at end of file diff --git a/Task1/index.html b/Task1/index.html new file mode 100644 index 0000000..20e2f75 --- /dev/null +++ b/Task1/index.html @@ -0,0 +1,39 @@ + + + + + + + + Html Task 1 + + +
+

This is your first HTML page!

+
+
+

Seems like things are going pretty well so far

+

let's add a recipe for some delicious cholocate chip cookies

+

We're going to borrow a nice picture from General Mills

+ +

Here's what the recipe calls for

+ +
    Instructions(may or may not be correct)) +
  1. Add eggs, flour and vanilla extract and mix
  2. +
  3. Combine with sugar and baking powder and stir
  4. +
  5. Eat half the cookie batter because it is delicious
  6. +
  7. Take the rest of the cookie batter and make cookies
  8. +
  9. Bake at 350 for 25 mins
  10. +
  11. Enjoy
  12. +
+
+

Oh you don't trust us? You want to see the actual recipe? You can view it right Here

+
+ + \ No newline at end of file diff --git a/Task3/index.html b/Task3/index.html new file mode 100644 index 0000000..f3f0132 --- /dev/null +++ b/Task3/index.html @@ -0,0 +1,68 @@ + + + + + + + Task3 + +
+
+

Welcome!

+
+ +
+
+

Here's a great video from youtube

+ +
+
+

Here's some music from spotify

+ +
+
+
+ + + + + + + + + + + + + + + +
Group Names
Group 1
Work + + + + + + + + + + + + + +
Group2
Some text here
AdeSusan
+
+ + + + + + + \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index aec217a..0000000 --- a/index.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Document - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Full NameFavourite ArtistState of OriginNumber of SiblingsGender
Adewumi AdeyemoAngelique KidjoOyo8Male
Gabriel KayodeAsaOyo5Male
Efosa OdiaSinachEdo3Male
Akintunde AlabiVic OOsun2Male
Emmanuel OderemiJohnny DrilleOgun3Male
Olamiji BadmosSimiOyo4Female
Kareem JohnbelieveAlec BenjaminKogi state3Male
Matthew OmolewaRon KenolyEkiti3Male
Adebayo SeunWizkidOyo state3Male
Tahiru Tajudin Abdullahiidriskogi7Male
Badmus AdeshinaFalzLagos state3Male
Olufolahan TubiBrayn AdamsOyo State1Male
Ndibe ChinonsoLil WayneImo State3Male
Oru Chukwuemeka.EDavidoAbia State6male
- - - diff --git a/styles.css b/styles.css deleted file mode 100644 index 98fd805..0000000 --- a/styles.css +++ /dev/null @@ -1,81 +0,0 @@ -body { - font-family: "Roboto", sans-serif; -} -.table { - width: 100%; - border-spacing: 0; - text-align: left; -} -.table th { - font-weight: 300; - font-size: 16px; - color: #fff; - line-height: 26px; - padding: 18px 30px; -} -.table thead tr { - background: #2b2d32; -} -.table td { - padding: 30px 30px 31px; - font-weight: 300; - font-size: 16px; - color: black-2; - line-height: 26px; - text-transform: uppercase; -} -.table tbody tr:nth-child(odd) { - background: $white; -} -.table tbody tr:nth-child(even) { - background: $f8fbfc; -} -.table__wrapper { - padding-top: 40px; -} -.btn { - display: inline-block; - font-weight: 700; - font-size: 15px; - line-height: 25px; - text-transform: uppercase; - width: 170px; - text-align: center; - padding: 10px; - border-radius: 3px; - transition: background 0.3s ease; - text-decoration: none; -} -.btn:hover { - color: $white; -} -.btn__male { - color: #2DE1FC; - border: 2px solid #2DE1FC; -} -.btn__malee:hover { - background: #2DE1FC; -} -.btn__female { - color: #FF0080; - border: 2px solid #FF0080; -} -.btn__female:hover { - background: #FF0080; -} -@media (max-width: 768px) { - .table td { - display: block; - text-align: right; - } - .table td:before { - content: attr(data-label); - float: left; - text-transform: uppercase; - font-weight: bold; - } - .table thead display none tr { - margin-bottom: 30px; - display: block; - } -}