0% found this document useful (0 votes)
5 views

018 Wdb HTML Intro

The document provides an overview of HTML basics, including the distinction between elements and tags, common HTML elements, and the structure of an HTML document. It emphasizes the importance of standard elements recognized by browsers and the use of opening and closing tags to create these elements. Additionally, it mentions the HTML boilerplate or skeleton used for writing HTML.

Uploaded by

nd
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

018 Wdb HTML Intro

The document provides an overview of HTML basics, including the distinction between elements and tags, common HTML elements, and the structure of an HTML document. It emphasizes the importance of standard elements recognized by browsers and the use of opening and closing tags to create these elements. Additionally, it mentions the HTML boilerplate or skeleton used for writing HTML.

Uploaded by

nd
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

HTML Basics

Elements vs. Tags


Intro to MDN
HTML Boilerplate
Common HTML Elements

Unit Goals
Things We'll Cover
THE
PURPLE CSS - adjectives

DINO
HTML - nouns

DANCED JS - verbs
Colt, please see me after
class. This is plagarized.

HTML To see a World in a Grain of


Sand. And a Heaven in a Wild
Flower Hold Infinity in the
IS A palm of your hand - And
Eternity in an hour - A Robin
MARKUP Red breast in a Cage - Puts
LANGUAGE all Heaven in a Rage A Dove
house filld with Doves &
S pellingPigeons
MARKUP LANGUAGE
How would you describe
this paper's structure
to someone over the
phone so that they
could reproduce it?
What about morse code?
MARKUP LANGUAGE
"Make this part bold"
"Make this part a link"

"Make this a paragraph"


HTML ELEMENTS
To write HTML, we pick from a set of standard
Elements that all browsers recognize
Common Elements include:
<p> element - represents a paragraph of text
<h1> element - represents the main header on a page
<img> element - embeds an image
<form> element - represents a form
HTML TAGS
We create elements by writing tags.
Most (but not all) elements consist of an
opening and closing tag.

Opening Tag

<p>I am a paragraph</p>
Closing Tag
DEVELOPER NETWORK
HTML SKELETON
We write our HTML in a standard "skeleton"

You might also like