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

p81 Htmltutorial

HTML stands for Hypertext Markup Language and is used to structure and present content on the world wide web. A web browser is a program that interprets HTML and displays web pages. Common web browsers include Internet Explorer, Firefox, and Safari. HTML uses tags like <title> that are surrounded by angle brackets to provide formatting and structure. Attributes provide additional instructions for some tags. The HTML code is saved in a file with an .htm or .html extension.

Uploaded by

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

p81 Htmltutorial

HTML stands for Hypertext Markup Language and is used to structure and present content on the world wide web. A web browser is a program that interprets HTML and displays web pages. Common web browsers include Internet Explorer, Firefox, and Safari. HTML uses tags like <title> that are surrounded by angle brackets to provide formatting and structure. Attributes provide additional instructions for some tags. The HTML code is saved in a file with an .htm or .html extension.

Uploaded by

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

WEB UNIT: You speak HTML?

Page 81

HTML stands for: H________T________ M________ L_______________


HTML is a _______________________________ for webpages.

A ____________ is a computer _________ that converts HTML into what we see as a _____________.

Examples of WEB BROWSERS include: _______________ by Microsoft


_______________ by Mozilla
_______________ by Apple Corporation

HTML is a language composed of HTML __________________.

These are shown encased in _____________________________ < >

A ______________ tag (i.e. <title>) and an ________________ tag (i.e. </title>)

Only what is within the start tag and end tag are affected by the __________.

A _________________ is an HTML file.


This file must have an ____________ or ________________ file extension to be read by a browser.

An HTML file can be created using a simple text editor such as ______________________.

TUTORIAL: Type the following Text in NOTEPAD and save as PerX-lastf-date-myfirstwebpage.htm

<html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>

View your webpage in your browser. LABEL the MARKUP TAG, ELEMENT, ATTRIBUTE

A webpage follows the following order:

The first tag in your HTML document is <html>. This tag tells your browser that this is the start of an HTML document. The last
tag in your document is </html>. This tag tells your browser that this is the end of the HTML document.

The text between the <head> tag and the </head> tag is header information. Header information is not displayed in the browser
window.

The text between the <title> and </title> tags is the title of your document. The title is displayed in your browser's caption.

The text between the <body> and </body> tags is the text that will be displayed in your browser.

The text between the <b> and </b> tags will be displayed in a bold font.

__________________ are parts of HTML tags that give specific instructions for some tags.

For Example:

The tag <font> tag has the following attributes:


Exercise #2: SAVE AS: MYSECONDPAGE

Here’s the title to the webpage!

Use different colors for each letter

Exercise #3: SAVE AS: MYTHIRDPAGE

HINT: for this page’s paragraphs, use <br>

CENTERED!

Use a different color for this stanza

Use a different color for this stanza

You might also like