basic HTML for beginners, Slides of Computer science

Simple and basic HTML notes where you can revise and learn all the important tags and syntax.

Typology: Slides

2024/2025

Available from 07/02/2025

kashifa-affan
kashifa-affan 🇮🇳

2 documents

1 / 11

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
BASIC HTML
For Beginners
by K.shaikh
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download basic HTML for beginners and more Slides Computer science in PDF only on Docsity!

BASIC HTML

For Beginners

by K.shaikh

INTRODUCTION HTML-Hypertext Markup Language It is a language that is used to structure a web page, and its content. It provides the basic framework for web pages,defining how text,images,and other elements are displayed.

BASIC HTML EXAMPLE

Page Title

My First Heading

My first paragraph.

EXAMPLE EXPLANATION

- declaration defines that this document is an HTML

document **** element is the root element of an HTML page element defines a large heading element contains meta information about the HTML page element specifies a title for the HTML page element defines the document's body, and is a container for all the visible contents ** **

<head>

<p> <h1> element defines a paragraph

HTML HEADINGS HTML headings are defined with the to tags. defines the most important heading. defines the least important heading:

HTML PARAGRAPHS HTML paragraphs are defined with the

tag:

This is a paragraph.

This is another paragraph.

HTML IMAGES HTML images are defined with the tag. The source file (src), alternative text (alt), width, and height are provided as attributes:

THANK YOU