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

Section 15

Uploaded by

api-255544718
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views

Section 15

Uploaded by

api-255544718
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Section 15 Notes - Web Site Authoring

Basic structure of HTML. Set of instructions


using common commands. These instructions
are used to make webpages, games, software
for DVD players, phones.

What is HTML ?
HTML stands for Hyper Text Markup
Language
HTML is a markup language
A markup language is a set of
markup tags
These tags describe document
content
All HTML files contain Tags and plain
Text. NOTHING ELSE

HTML Tags
HTML tags are always surrounded by
brackets like <html>
HTML Tags usually come in pairs,
such as start bold<b> and end bold </b>
HTML Elements
Anything between the tags is called
an element
<p>this is a new paragraph</p>

HTML Versions
HTML 1991
HTML+ 1993
HTML2.0 1995
HTML3.2 1997
HTML4.01 1999
XHTML 2000
<html> - begins an HTML document
<title> - makes a HTML title at top of page
This is my webpage
</title>
<body> - the actual page
</body>





</html> - ends an html document





HTML Tags Purpose
<b> Bold
<I> Italic
<u> Underline
<p> Make new paragraph.
Add a <br> tag to the top of element
<br> Line break, same as hitting does not need
to be ended
<html> Begins HTML code
<body> Begins the main part of documents
<head> Begins the header of the document, such
as the header, Title , or style sheet
H1 Equal to font size 6, Bold, and a <br> tag at
end
H2 Equal to font size 5, Bold, and a <br> tag at
end
H3 Equal to font size 4, Bold, and a <br> tag at
end
H4 Equal to font size 3, Bold, and a <br> tag at
end
H5 Equal to font size 2, Bold, and a <br> tag at
end
H6 Equal to font size 1, Bold, and a <br> tag at
end




Structure of a stylesheet-page212
What are the names for the parts of a code in
style-sheet?
How should an HTML folder be organized?
Create hyperlink to google .com with the words
"click here" as the text

You might also like