0% found this document useful (0 votes)
3 views8 pages

HTML 594

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views8 pages

HTML 594

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 8

A PRESENTATION ON

BY
HTML
J. CHARISHMA DEVARDHI
ROLL NUMBER : 24J21AO594
BRANCH : CSE
SECTION : B
INTRODUCTION TO HTML
HTML – Hypertext Markup Language

 It is a markup language, so it provides a flexible way to


design web pages along with the text.

 It facilitates programmers to add a link on the web pages ,so


it enhances the interest of browsing of the user.

 It is platform-independent because it can be displayed on


any platform like Windows, Linux, and Macintosh, etc.

 It facilitates the programmer to add Graphics, Videos, and


Sound to the web pages .

 HTML is a case-insensitive language, which means we can


use tags either in lower-case or upper-case.
EXAMPLE OF HTML
<!DOCTYPE>
<html>
<head>
<title>Web page title</title>
</head>
<body>
<h1>Write Your First Heading</h1>
<p>Write Your First Paragraph.</p>
</body>
</html>
HTML Syntax and Structu
1 Elements and Tags 2 Attributes
HTML is built Attributes
around provide
elements, which additional
are defined by information
tags. These tags about elements,
are enclosed in such as id, class,
angle brackets and href.
(e.g., <p>,
3 Structure
<h1>). and Hierarchy
HTML documents are structured
hierarchically using nested tags to
define relationships between elements.
BASIC HTML ELEMENTS
<!DOCTYPE>: It defines the document type or it instruct the browser about the version
of HTML.

<html > :This tag informs the browser that it is an HTML document. Text between html tag
describes the web document. It is a container for all elements of HTML except <!DOCTYPE>

<head>: It should be the first element inside the <html> element, which contains the
metadata(information about the document). It must be closed before the body tag opens.

<title>: It is used to add title of that HTML page which appears at the top of the browser
window. It must be placed inside the head tag and should close immediately
<body> : Text between body tag describes the body content of the page that is visible
to the end user. This tag contains the main content of the HTML document.

<h1> : Text between <h1> tag describes the first level heading of the webpage

<p> : Text between <p> tag describes the paragraph of the webpage.
CONCLUSION
Valid Code 1
Validate your HTML
code to ensure it meets standards
and is interpreted correctly by browsers.
2 Semantic HTML
It is used to create
meaningful structures that
Accessibility 3 are understood by
Design web pages that are browsers and assistive
accessible to all users, technologies.
including people with disabilities. 4 Maintainability
Write organized code for
easy understanding and
future modifications.
THANK YOU

You might also like