






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Simple and basic HTML notes where you can revise and learn all the important tags and syntax.
Typology: Slides
1 / 11
This page cannot be seen from the preview
Don't miss anything!







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
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 ** **
<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: