5 What is the main element that we have to include to create
5. What is the main element that we have to include to create web page?
6. Give the elements name for these descriptions:
Unordered list:
Ordered list:
Description list:
Solution
Answer:
5:
Recently the <main> element was added into the HTML5 specification for creation web pages.
And also we are using <html>, <body>, <header> and <footer> are main elements in the creation of web pages.
Example:
<!DOCTYPE html>
<html>
<head>
<title>example Page</title>
</head>
<body>
<h1> heading</h1>
<p> paragraph</p>
</body>
</html>
