0% found this document useful (0 votes)
19 views1 page

HTML Elements Starting with 'div'

The document outlines the basic structure of an HTML page, including essential elements such as <html>, <head>, and <body>. It describes various tags for headings, paragraphs, links, images, lists, and page divisions, along with formatting options like bold and text size adjustments. Additionally, it explains how to create headers and footers using <header> and <footer> tags.

Uploaded by

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

HTML Elements Starting with 'div'

The document outlines the basic structure of an HTML page, including essential elements such as <html>, <head>, and <body>. It describes various tags for headings, paragraphs, links, images, lists, and page divisions, along with formatting options like bold and text size adjustments. Additionally, it explains how to create headers and footers using <header> and <footer> tags.

Uploaded by

jaysoni190400
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Structure of HTML

<html>
<head>
<title>Page title </title>
<head>
<body>
<h1>This is a heading </h1>
<p>This is a paragraph </p>
<p>This is another paragraph </p>

Six sizes of text:(only used in headings)


<h1>
<h2>
<h3>
<h4>
<h5>
<h6>

</br> (used for line breaks)

<strong> </strong>( used to make bold words)

To change the size of words in paragraphs:

<big> </big> (for big sized words)


<small> </small> (for small sized words)

We can use <hr> to put a horizontal line

We can adjust the width of the line by using <hr width "70%"> to make the line go
only 70% of the screen.

<a href="[Link] This is a link to dance


monkey lyrics

To add images <img src="[Link]


2f908a9a7a1b?ixlib=rb-
4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8Z2FtaW5nJTIwc2V0dXB8ZW58MHx8MHx8&w=1000&q=80
"

To add a list we can use <li> at the start and </li> at the end

To add an unordered list we can use <ul> at the start and </ul> at the end

To divide the page into two parts we can use <div> at the start and </div> at the
end

To add a header we can use <header> at the start and </header> at the end

To add a footer we can use <footer> at the start and </footer> at the end

You might also like