Computer_10_-LLM_12
Computer_10_-LLM_12
LEARNING MATERIAL
12
IN
COMPUTER 10
RD
3 QUARTER
SY 2023 – 2024
In this LLM, we are going to cover the following topics and you should be able to
Further Tags
Inside the <head> tag, there is one tag that is always included: <title>, but there are
others that are just as important:
<title>
This is where we insert the page name as it will appear at the top of the
browser window or tab.
<head>
<title>My First Webpage</title>
</header>
Adding Content
Next, we will make <body> tag.
The HTML <body> is where we add the content which is designed for viewing by
human eyes.
This includes text, images, tables, forms and everything else that we see on
the internet each day.
<h1>
o <h2>
<h3>
<h4>
<h5>
<h6>
As you might have guessed <h1> and <h2> should be used for the most
important titles, while the remaining tags should be used for sub-headings and less
important text.
Search engine bots use this order when deciphering which information is most important on a page.
These tags must be opened and closed around the text in question.
Let’s try it out. On a new line in the HTML editor, type the following HTML code:
<p>Welcome to <em>my</em> brand new website. This site will be my
<strong>new<strong> home on the web.</p>
Don’t forget to hit save and then refresh the page in your browser to see the results.