CodeFizz

A Free Learn-To-Code Website

HTML Home

HTML Syntax


A Basic HTML Document

<!DOCTYPE html>
<html>
<title>My Webpage</title>
<body>
<h1>Welcome to my webpage!</h1>
<p>Hello World!</p>
<a href="https://beiswenger.net/codefizz">Click me!</a>
</body>
</html>
Try it »

Meaning and Usage