HTML

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 27

INTRODUCTION

TO
HTML
<!DOCTYPE html>
<html>
<head>
<title> </title>
</head>
<body> </body>

</html>
<!DOCTYPE html>
<html>
<head>
<title> </title>
</head>
<body> </body>

</html>
<!DOCTYPE html> Version of HTML
<html> Root Element

<head> Header section

Shows the caption


<title> </title> in the
Title Bar of the page
</head>
<body> </body> Contents of the webpage

</html>
<html> Root Element

This element encloses everything inside an html document


tags
elements
style

sheets
scripts
text
multimedia
What is a webpage?

Electronic document
What is ?
HyperText Markup Language

Primary Language used to create web pages.

HTML provides commands that


will allow you to create links
between the web pages.

HTML is a markup language.


Mark-up is the process of inserting
formatting intructions to the document.
< > - Angle brackets
EMPTY TAG - Does not have an end
tag or command. Ex. <br>

CONTAINER TAG - requires an end


tag and usually comes in pairs.
Ex. <title> ...</title>
ELEMENT - An HTML element is
defined by a start tag, some content, and an
end tag.

<p> This is a paragraph.</p>


EXERCISE #1
TITLE: "MY FIRST WEB PAGE"

CONTENT:
What is the Internet?.

The word Internet comes from the term


internetworking, which means."to communicate
between networks."
MINI TASK
TITLE: "SONG TITLE"

CONTENT:

YOUR FAVORITE LYRICS AND WHY?


MINI TASK

CODE : 20 %
TIME AND EFFORT: 10 %
CONTENT: 20%

TOTAL OF 50%
1.What causes a person to be disorganized?

2. Can a disorganized person become organized?


HTML headings are defined with the


<h1> to <h6> tags.

<h1> - defines as the most important


- largest heading

<h6> - least important


- smallest heading
Paragraph tag

<p> </p>
An HTML paragraph is a group of text that
has line space at the top and bottom.

Break

<br>
It inserts a line break within the group text.

Center

<center> </center>
It is used to center a large block of text.

You might also like