Computer Science, asked by saahithi5710, 9 months ago

The striucture of an html document consists of

Answers

Answered by MrityunjaySharmaa
4

A basic html structure consist of the following tags:

<html>, <head>, <title>, <body>

Structure:

<html>

<head>

<title></title>

</head>

<body>

</body>

</html>

Answered by Brainlyshchay
0

The basic structure of a HTML document consists of the following code:

Code:

<html>

<head>

<title>Your Title goes here ! | nishchay</title>

</head>

<body>

<h1>Here you'll add your heading !</h1>

<p>Here you can type your paragraph here !</p>

</body>

<footer>

Here you can add the copyrights description or Social Media follow buttons

</footer>

</html>

THE HTML TAG:-

  • We should add the <html> tag in a HTML document because it tells the computer that this content is there in the website.
  • HTML = HYPER TEXT MARKUP LANGUAGE

THE HEAD TAG:-

  • The head tag describes that this is the header of the HTML document and this should be loaded before the rest of the content.

THE TITLE TAG:-

  • The title tag is used to enter text, image in the title of the web page.
  • *NOTE: you can see the which is the title in the image given below

THE BODY TAG:-

  • Then comes the body tag. Your whole content of the web page goes in the body tag.
  • Example: A heading, a paragraph, a button, and many more.

THE FOOTER TAG:-

  • The footer tag is used to add the credits of the webpage, copyrights, social media buttons, contact us links, etc.
  • *Note: This tag is optional.

HOPE THIS HELPS YOU :)

No SPAMMING ❕❗......

Attachments:
Similar questions