html

HTML 3 Page Website Assignment

HTML Checklist

HTML Template


HTML (hypertext markup language) defines what content appears on a webpage.

HTML is one of the three languages that every web developer must learn, along with CSS and JavaScript.

See HTML on w3schools for self guided learning.

w3schools.com is an awesome resource – make sure you use it!

You can also use text editors to make HTML pages, such as Sublime Text or Notepad++.

replit.com can be used to learn HTML. When you create your repl, choose the “HTML/CSS/JS” template.

CSP Students – Visit these w3schools pages:

Basics – paragraphs, headings, links, images

Elements – You need to know what an element is and how it works!

Attributes – Attributes are options. Know how to set attributes!

Tables and Lists – examples of nested elements

Blocks – Block vs Inline elements; <div> and <span> tags

Head – includes invisible meta data; Not the same as a “header”

div – a box that can act as a container for other elements

HTML Classes – useful for giving a group of elements the same styles

HTML id – useful for finding a certain element in JavaScript code

You can read about styles if you want, but this is covered in CSS.