Like the human body skeleton you must see in your school lab there is every webpage skeleton which is the base of the web page and contains some rules and regulations which are the fundamental requirements of a web page
HTML, yes HTML is the skeleton of the webpage, HTML (HyperText Markup Language) What does it mean by HyperText —it means that text which refers to some other documents/texts/webpages. What is meant by referring to other documents Yes, You guessed right Link in webpages we have an anchor tag in which we provide a link to other pages or platforms.
Structure of a web page
On the web page, some rules and regulations are followed it is standardized there is no exception if you want to build a website
first, we define doctype — which means webpage document time which is mostly HTML
then we define the language of web pages which is also mostly English
then we define the head tag of the web page in which we provide important data like title links Metadata and viewport + more
then we define the body tag which controls the skeleton of the webpage which has headings, paragraphs images, videos gifs docs, and many more
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Heading One</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing.</p>
</body>
</html>
That is all for the basic skeleton/structure of a web page