HTML20TAGS20 20group204201
HTML20TAGS20 20group204201
TAGS
PRESENTED BY : GROUP 4
HTML TAGS
HTML (HyperText Markup Language) tags are
the fundamental building blocks used to create
the structure and layout of web pages.
They are pieces of markup language that
indicate the beginning and end of an HTML
element in an HTML document.
HTML tags help web browsers convert HTML
documents into web pages by defining the
structure and content of a webpage
STRUCTURE
HTML structure defines the basic layout of a
webpage.
Key Tags:
<html>: Root element that wraps the entire
content.
<head>: Contains metadata (title, styles).
<body>: Holds the visible content.
<div>: A container for organizing content.
STRUCTURE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>My First Webpage</title>
</head>
<body>
<h1>Welcome to My Page</h1>
<p>This is my first HTML website!</p>
</body>
</html>
TEXT
Text tags define how text appears on the
webpage.
Common Tags:
<h1> to <h6>: Headings (largest to smallest).
<p>: Paragraph.
<b>: Bold text.
<i>: Italic text.
<u>: Underlined text.
TEXT