After the head of the document goes the body of the document. Anything within the body tags will apply to the body of the document, which means the part of the web page that is displayed within the browser window.
<body> </body>
<!DOCTYPE html>
<html>
<head>
<meta
charset="UTF-8">
<title>Title Goes Here</title>
</head>
<body>
</body>
</html>
Congratulations! Using the information we've covered so far, we can now create a basic web page!
<!DOCTYPE html>
<html>
<head>
<meta
charset="UTF-8">
<title>Hello!</title>
</head>
<body>
HELLO WORLD!
</body>
</html>
So, now, save this code within the new HTML file you created on your computer. Then you can double click it and open it up in the browser.
HELLO WORLD!
Now that you've learned how to create web pages, you can play around with the code as you learn.
Click the next button to learn more HTML.