reading-notes

Class 4 Reading Assignment: HTML Structure

Resources

Takeaway from Resources

Wireframe and Design.

What is a wireframe? It’s a practice used by UX designers which allows them to define and plan the information hieracrchy of thier design for a website, app or product. When designing for the screen you need to know where all the information is going to go by using a plain black and white diagram BEFORE building anything with code. It’s done in black and white because colors, typeface choices and text can be distracting when you are planning the layout and interaction of your interface.

There are various ways that you can use to design a wireframe. Some people draw them by hand while others use software such as Invision or Balsamiq to create theirs. How you make your wireframe is completely up to you.

The process can be implemented in various ways.

Regardless of approach, it’s important to keep these Key Principles in mind:

Steps to Make a Wireframe.

Mozilla HTML Basics.

Semantics.

Mozilla HTML Docs.

Mozilla HTML Elements.

HTML Slideshow Notes

Made webpages with simple HTML, CSS and JavaScript.

Learning how to properly have the framework was important.

Hypertext Markup Language

Structure - for our page

Specifically Content

Semantic - Plainly describes its meaning/purpose

Headers = <h1>Content goes here</h1>

Anchor tags =

Image tags =

You have to give these tags additional information in order for them to do their jobs.

href attributes = additional information with an assigned value.

Here we have the opening tag, the content, and our closing tag.