#HTML Tutorial
HyperText Markup Language (HTML) is the standard markup language used to create web pages. With HTML, you can build your own website. HTML is easy to learn — you’re going to love it!
Here is a basic example:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph</p>
</body>
</html>
Create a new text file, copy and paste the above code into it, save it, then change the file extension to .html
. Open the file in a web browser.
It will look like this:
Page Title
This is a Heading
This is a paragraph