Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.16 KB

wireframe&HTML.md

File metadata and controls

22 lines (17 loc) · 1.16 KB

Wireframe

What is a wireframe, and why do UX designers use them?

Wireframing is a practice used by UX designers which allows them to define and plan the information hierarchy of their design for a website, app, or product. This process focuses on how the designer or client wants the user to process information on a site, based on the user research already performed by the UX design team.

designing need to know where all the information is going to go in plain black and white diagrams before building anything with code, Without the distractions of colors, typeface choices or text.

HTML

what is HTML:

Stands for "Hypertext Markup Language." HTML is the language used to create webpages. "Hypertext" refers to the hyperlinks that an HTML page may contain. "Markup language" refers to the way tags are used to define the page layout and elements within the page.

Below is an example of HTML used to define a basic webpage with a title and a single paragraph of text.

<!doctype html>
<title>TechTerms.com</title>

This is an example of a paragraph in HTML.