HTML
How HTML Works
Basic Structure of an HTML Page:
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello, world!</h1>
<p>This is my first web page.</p>
<a href="https://www.example.com">Click here to visit a website!</a>
</body>
</html>Breaking It Down:
What You See on the Web Page:
Last updated