Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

HTML tags for web designing, Schemes and Mind Maps of Computer Applications

Learning HTML tags and using to make web designing.

Typology: Schemes and Mind Maps

2023/2024

Available from 12/25/2024

athi-kesavan
athi-kesavan 🇮🇳

1 document

1 / 4

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Assignment Topic: HTML Tags
Introduction to HTML Tags
HTML (HyperText Markup Language) is the standard language for creating web pages. Tags in
HTML are used to define and structure the content of a webpage. They provide instructions to
web browsers on how to display text, images, links, and other elements.
---
Structure of an HTML Tag
1. Opening Tag: <tagname>
2. Content: The text or elements inside the tags.
3. Closing Tag: </tagname> (Not all tags have closing tags, e.g., <img>).
Example:
<p>This is a paragraph.</p>
---
Types of HTML Tags
1. Structural Tags
<html>: Defines the root of an HTML document.
<head>: Contains metadata and links to stylesheets or scripts.
<body>: Represents the main content of the webpage.
2. Formatting Tags
<h1> to <h6>: Define headings, with <h1> being the largest.
<p>: Represents a paragraph.
<b> and <strong>: Make text bold.
<i> and <em>: Italicize text.
pf3
pf4

Partial preview of the text

Download HTML tags for web designing and more Schemes and Mind Maps Computer Applications in PDF only on Docsity!

Assignment Topic: HTML Tags Introduction to HTML Tags HTML (HyperText Markup Language) is the standard language for creating web pages. Tags in HTML are used to define and structure the content of a webpage. They provide instructions to web browsers on how to display text, images, links, and other elements.


Structure of an HTML Tag

  1. Opening Tag:
  2. Content: The text or elements inside the tags.
  3. Closing Tag: (Not all tags have closing tags, e.g., ). Example:

This is a paragraph.

Types of HTML Tags

  1. Structural Tags : Defines the root of an HTML document. : Contains metadata and links to stylesheets or scripts.
: Represents the main content of the webpage. 2. Formatting Tags

to

: Define headings, with

being the largest.

: Represents a paragraph. and : Make text bold. and : Italicize text.

  1. Linking and Navigation Tags : Creates hyperlinks.
  2. Media Tags description: Displays an image.