CreatingWebPages Part1
CreatingWebPages Part1
Part 1
OVERVIEW:
HTML-What is it?
* You can see the code underlying a Web page by selecting View / Source
from your browser menu.
(2) save it as an
HTML file, and then
The <html> tag should start at the beginning of the document and end after the close of the
body element.
The <head> element provides useful, but hidden, information about the page.
The <body> element encloses the displayable content of the HTML documents. It
starts at the end of the <head> element and ends just before the closing <html>
tag.
It is not casesensitive.
Code snippet #2
10
LEARNING HTML:
Is there a quick way to practice writing and executing
code without having to create an .html file?
Yes! You can use W3Schools Tryit Editor* on the Web. You type your code in on the left, press
the button, and the result appear on the right.
* http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic
11
HTML ENTITIES:
<h1> <h6>:
12
13
HTML COLOR:
Hexadecimal Color Codes
14
15
16
17
18
LINKS:
The basic <a></a> tag
19