HTML
HTML (HyperText MarkupLanguage) is the standard language used to create and structure
webpages. It defines the content and layout of a webpage using elements (tags) like headings,
paragraphs, links, images, tables, and forms.
Here’s a basic HTML structure:
<!DOCTYPE html>
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first webpage.</p>
<a href="https://example.com">Visit Example</a>
</body>
</html>