Building a website with HTML
HTML: A display language
 Hyper Text Markup Language
Structured language = Uses tags
 They generally come in pairs
 <opens a tag>
 </closes a tag>
 Example:
<h1>My Crazy Good Paragraph</h1>
<p>This is my paragraph. It’s crazy good. But now it’s
time for it to end. </p>
One example is an H tag
An H1 tag tells the browser …
… to display a big heading
Without HTML With HTML
 Tags add formatting
 Headings <h>
 Paragraphs <p>
 Lists <ul>, <ol>
 Images <img>
 Links <a href>
About HTML
 Developed in early ‘90s
 Became popular because of ability to hyperlink
 Several versions followed
 HTML 4, XHTML, HTML5
The skeleton
Example of a simple webpage

Very basic intro to HTML