Hypertext Markup Language is the standard markup language used to create web pages. It forms the foundation of virtually every web page on the internet, providing the structure and content for displaying text, images, links, multimedia, and more in a web browser. Here's an introduction to HTML:
HTML is not a programming language; instead, it is a markup language. This means it is used to structure and format content on web pages rather than to perform computations or logic.
What is the basic function of HTML?
HTML (Hypertext Markup Language) includes a wide range of elements that allow you to structure and format content on a web page.
Here are the top 10 most commonly used HTML elements:
Which of the following tags is used to create a hyperlink in HTML?
<!DOCTYPE html>
<html>
<head>
<title>My Simple HTML Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a paragraph of text. </p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<p>Here is an image:</p>
<img src="https://via.placeholder.com/150" alt="Sample Image">
<p>Click <a href="https://www.example.com">here</a> to visit Example.com.</p>
</body>
</html>
What does HTML stand for?