Test your knowledge of the fundamental HTML concepts
Answer: HTML stands for HyperText Markup Language.
Answer: The <html> tag defines the main structure.
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first webpage.</p>
</body>
</html>
Answer: The <p> tag.
<p>This is a paragraph.</p>
<img src="image.jpg" alt="Description of image">
src → Path of image | alt → Alternative text
Answer: It specifies the URL (link destination) in an anchor tag.
<a href="https://www.example.com">Visit Website</a>
Answer: There are 6 heading levels (h1 to h6).
<h1>Main Heading</h1> <h2>Sub Heading</h2> <h3>Section Heading</h3>