Introduction
What does HTML stand for?
Hyper
Text
Markup
Language
What is HTML?
It is the standard markup language used to create webpages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>). HTML tags most commonly come in pairs like <h1> and </h1>, although some tags represent empty elements and so are unpaired, for example <img>. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags).

Color Codes
For example, #112233
Red= 11
Green= 22
Blue= 33
Hexadecimal uses the numbers 0 to 9 and the letter "A" to "F" to represent color values.
In hex the smallest respresentation of a color is 00 and the largest is FF.
The range is 0-9 and A-F
The higher value are the lighter colors and the lowest, is the darker colors.
There are 140 colors supported in HTML and CSS (See someone else's if they've done CSS)
How to save your file when you're done coding your webpage?
First, save all your images, sources, etc. in one folder.
From that one folder, you are to make sub folders.
When you save an HTML file you can uses either the .htm or .html file extension no difference up to you
Keep file names short and descriptive!
And always try to avoid using spaces.
For example...
Basic.htm / basic.html / unionpineshs.html
What do you put in an HTML Document?
You put in the Declaration (Not of independence)
ALWAYS put the <__> brackets.
You'll need:
<doctype html>
<html>
<head>
<meta charset= "UTF-8">
<Title> Title of your document</title>
<Head>
<body>
Your content of the document
</body>
</html>
_25.jpg)
Today in this presentation you've learned What HTML is and the types of Color codes and how to make a "Template for your 'first time' coding a HTML webpage".
You've also learned how to save your template as a htm / html file extension. If you have any questions about something that we don't know, hesitate to ask us and decide to ask the teacher after the presentation. Thank you for your cooperation!
Britney and Shelby