Unit 1 Lesson 2 Introduction to HTML
Unit 1 Lesson 2 Introduction to HTML
British School
2024 – 2025 ACADEMIC YEAR
__________________________________________________________________________________________________
Unit 1
Lesson 2
Introduction to HTML
1-What is HTML?
4)The first tag in a pair is the start tag or (opening tag), the second tag is the
4-Search Engines
A web search engine is a computer program used to search for information on
the world wide web (www) or the internet by looking for keywords or a set of
words which the user has typed in.
Bing
Google Yahoo
5-Web browser:
The purpose of a web browser (Chrome, Edge, Firefox, Safari) is to read HTML
documents and display them correctly.
A browser does not display the HTML tags, but uses them to determine how to
display the webpage content.
Example:
<html>
<head>
<title>Index</title>
<body>
<h1>My First Heading</h1>
<p>My first paragraph</p>
</body>
</html>
6-HTML Structure:
HTML Structure
<html> Tag Description
<head> This tag describes an HTML document
<title>title text and composed of document header
here</title> which is represented by
<html>
<head>...</head> and document
</head> body which is represented by
<body>...</body> tags.
<body>
Note:
1. The content inside the <body> section will be displayed in a browser.
2. The content inside the <title> element will be shown in the browser's
title bar or in the page's tab.
Scan Me
To watch video