html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
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