Web Design Explorations

Design structures you would like to use: (WISHLIST)
Boxing and Divs
  1. Designing suitable divisions and boxing.
  2. Utilizing an aesthetic using CSS
  3. Flexing boxes
  4. Discovering new posibilities of the display and float function in CSS.
Background posibilities
  1. Using a fixed background (like the current iteration of this website)
  2. Using blending modes
  3. Using the box width and height of every division to create a template for the website.
  4. Finding/creating suitable images to fit the template.
Content
  1. Loading new content within a division/box without changing the index page.
Aesthetics
  1. Design buttons and icons that would fit with the boxes.
Can you think of an analogy to describe HTML, CSS and the DOM? How would you describe it to your non-technical friend?

Each component deals with a different aspect of web design, Html deals with hands on information, including words, paragraphs, headers, sections etc. CSS deals with aesthetic and style, such as font size and color. DOM is a gateway to all elements on your website, and can be used to manipulate the elements using HTML but also other languages (like Javascript)

What is meant by boxifying design?

Boxifying design deals with seperating sections of a draft web design piece into different sections, similar to an excel spreadsheet, except you must define the boxes using the div function. This serves to simplify the construction of the website.

What is the box model?

Box Model refers to the layout. Every header, navigation menu and body can be segmented into boxes. Any of these boxes can be stylized through CSS.