Introduction
Lesson 1 of 5 in Coddy's HTML - Beginner site course.
Welcome to this course!
In this course you will create your own basic site using HTML.
To start let's get familiar with the environment.
Challenge
EasyIn the code editor enter the following code,
<!DOCTYPE html>
<html>
<body>
<!-- Your code here -->
</body>
</html>This will be the skeleton of everything, and between the body tag you can write your code.
When you are done hit the "Run Code" button.
BONUS: try typing anything between the body tag and you will see it appears on the "Web View"
Try it yourself