creation a webpage in HTML
Answers
hyper text markup language
An example HTML document
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML document</title>
</head>
<body>
<header>
<h1>Useful Websites</h1>
<nav>
<a href="www.google.com">Google</a>
<a href="www.facebook.com">Facebook</a>
</nav>
</header>
<section>
<h2>Food I like most</h2>
<ul>
<li>Apples</li>
<li>Pizza</li>
<li>Coconut Sweets</li>
<li>Chocolate Cake</li>
</ul>
</section>
<footer>
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="logo">This page was created by Naman
</footer>
</body>
</html>
More Question:
Explain with the help of code, how audio and video clips can be added in an HTML document.
brainly.in/question/12626074