You are on page 1of 2

Republic of the Philippines

Department of Education
Region III
Division of City Schools
OLONGAPO CITY NATIONAL HIGH SCHOOL
Olongapo City

Quarter 4: Computer Science 1 for Grade 7 ICT and STE Program


Module 7: HTML Basic Examples (Week 4)
Learning Objective: To give an overview of a basic example of an HTML.
HTML Documents
 All HTML documents must start with a document
type declaration: <!DOCTYPE html>.
 The HTML document itself begins with <html>
and ends with </html>.
 The visible part of the HTML document is
between <body> and </body>.

The <!DOCTYPE> Declaration

 The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly.
 It must only appear once, at the top of the page (before any HTML tags).
 The <!DOCTYPE> declaration is not case sensitive.
 The <!DOCTYPE> declaration for HTML5 is: <!DOCTYPE html>
HTML Headings

 HTML headings are defined with the <h1> to <h6> tags.


 <h1> defines the most important heading. <h6> defines the least important heading:

HTML Paragraphs
HTML paragraphs are defined with the <p> tag:

HTML Links
HTML links are defined with the <a> tag:

The link's destination is specified in the href attribute.


Attributes are used to provide additional information about HTML elements.

HTML Images
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), width, and height are provided as attributes:

Prepared by: Ms. Mary Ann M. Santiago, SST-III


Reference: https://www.w3schools.com/html/html_intro.asp 1
Name: ________________________________________ Grade & Sec: ____________ Date: ___________

Quarter 4: Computer Science 1 for Grade 7 ICT and STE Program

Check Your Progress 3


HTML Basic Examples
Direction: Choose a word from the box to correctly answer each question. Write the letter on the blank.

a. <img>
b. <h1>
c. <!DOCTYPE html>
d. <h6>
e. HTML links

1. ___________ They are defined with the <a> tag

2. ___________ It is defined as the least important heading

3. ___________ An HTML image tag.

4. ___________ It is defined as the most important heading

5. ___________ All HTML documents must start with a document type declaration with this tag.

Prepared by: Ms. Mary Ann M. Santiago, SST-III


Reference: https://www.w3schools.com/html/html_intro.asp 2

You might also like