Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Lecture 2

  • Repeat/explain how HTML is structured, go through the entire html structure, explain all different elements
  • CSS
    • Tips and tricks
  • Media queries
  • Understand why/ how to use which language
  • How to work with the inspector
  • Resume presentations

Homework

Read:

Exercises:

Assignment:

  • Grids exercise
    • Download the html and images in the folder Homework3
    • You are going to write the css for this page
    • You are not allowed to change the html
    • The page contains two grids: the first one should work using floats, the second using flexbox. Be careful not to mix the two!
    • We want the grid to look as follows:
      • On mobile phones: a two column grid, with the exception that the first item spans the full width
      • On tablets: a three column grid, with the exception that the first two items span the full width together (so first we have two columns, then afther the first two items we have three columns)
      • On desktops: a four column grid, with the exception that the first item spans two columns.
    • There should be some space between the grid items
    • Make the page look beautiful by adding some more css! Some tips:
      • How about some nice colors, fonts, hover styles?
      • According to the grid specification, some products are bigger than others. Maybe these are "highlighted" products, so the rest of the styling could also be different.
    • BEFORE you hand it in, read the Style guide again and check your files