Coding of this html
Answers
Answer:
<html>
<head>
<Title> any name </title> </head>
<body>
your content
.
.
.
.
.
.
.
.
</body>
</html>
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>
<section>
<h2>My Learning</h2>
<p>Progress in this Course(100%)<progress value="100" max="100"></progress></p>
<p>Progress in Specialization(20%)<progress value="20" max="100"></progress></p>
<p>Progress in life goals(67%)<progress value="67" max="100"></progress></p>
</section>
<section>
<h2>More About Me</h2>
<details>
<summary>My Childhood</summary>
I grew up in India. I lived near Tajmahal and I really miss the sunsets over the water.
</details>
</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.
https://brainly.in/question/12626074
HTML Meaning: what is html?
brainly.in/question/643321