History, asked by bhawanpreet17, 1 month ago

Write the structure of an HTML web page.​

Answers

Answered by Sardrni
0

Answer:

HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content. HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc

Answered by swarabodhe17
0

Answer:

Answer for C.S.

Explanation:

Every web page consists of a few tags that define the page as a whole, for example a simple web page can be shown as :

<HTML>

<HEAD>

<TITLE> Hello world </TITLE>

</HEAD>

<BODY>

Hellow world

</BODY>

</HTML>

The above HTML code can be typed by text editor. the browser will display Hello world on the screen. The above example consists of 8 different tags. Basic structure tags are building blocks for HTML.

Hope it helps

Similar questions