HTML 594
HTML 594
BY
HTML
J. CHARISHMA DEVARDHI
ROLL NUMBER : 24J21AO594
BRANCH : CSE
SECTION : B
INTRODUCTION TO HTML
HTML – Hypertext Markup Language
<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