Skip to content

esyasar/Week3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Week 3 Homework ヽ( ゚ヮ゚)ノ

For our CSS homework, we will extend our HTML work from Week 2. Feel free to modify the content of your page as you see fit. You may want to include a section on your education, experience, projects, etc.

Setup

  • Fork this project
  • Copy your “index.html” file from Week 2
  • Create a "style.css" file inside your folder
  • Create a folder called “images” inside your folder

Checklist: HTML

  • Add meta information to your <head>
    • <meta charset="UTF-8">
    • <meta name="author" content="Your Name"> with your name
    • <meta name="description" content="Add your description here">
  • At least four sections including:
    • <header> introducing yourself
    • Two <section> divs of your choice
    • <footer> with a link to your Github
  • Include at least 1 Font Awesome icon
    • Link to the Font Awesome stylesheet in your <head>
    • <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
  • Include a link to http://hackyourfuture.ca

Checklist: CSS

  • Comment a title for each section of your styles, for example /* Header */ and / * About Me */
  • Include a fixed background image for your body
    • Ensure that your image is high quality. Good resources for free high quality images are Unsplash and Pexels
  • Modify the border-radius property of at least 1 image
  • Include Google Fonts - Google fonts guide from w3 schools
    • One for your p selector
    • A different one for h1, h2 selectors
  • Give each section a unique background-color
    • At least one section should be in the rgba format with transparency, so that your background image can be viewed
  • Style the a selector
    • style the a:hover selector
  • Use the text-align property to centre (center) the content of one of your sections

Bonus

  • Navigation bar with anchor links
  • Add a shortcut icon
  • Comment your HTML sections, e.g. <!-- header --> <!-- contact -->

Troubleshooting & Tips

  • Make sure that your body selector has 0 padding and 0 margins - so that your sections will inherit that property
  • Add margins to your img selector so that there is space between your images

About

CSS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 64.1%
  • CSS 35.9%