HTML (HyperText Markup Language) is the standard language for creating
web
pages. It structures content on the web using elements and tags. The basic structure
includes <!DOCTYPE html>,
<html>,<head>, and <body>.
<!DOCTYPE html>
<html>
<head>
<title>HTML & CSS</title>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to my website.</p>
</body>
</html>
Hello World!
Welcome to my website.