Write the basic structure of of HTML along with an example ?
Answers
Answered by
0
Answer:
An HTML Document is mainly divided into two parts: HEAD: This contains the information about the HTML document. For Example, Title of the page, version of HTML, Meta Data etc. BODY: This contains everything you want to display on the Web Page
Answered by
0
Basic Structure of HTML
<html>
<head>
<title> This is Tiltle </title>
</head>
<body>
<h1>This is heading </h1>
</body>
</html>
Example :-
Creating a simple webpage using HTML.
<html>
<head>
<title> List of Fruits </title>
</head>
<body>
<h1> Popular foods in India </h1>
<h2> Mango </h2>
<h2> Banana </h2>
<h2> Orange </h2>
<h2> Apple </h2>
</body>
</html>
Attachments:
Similar questions