Time to put these new skills to the test! In this activity, you’ll create a new HTML page from scratch.
Create a new HTML document called FirstHTML.html
.
Give your HTML page the title “My First HTML Page.”
Add some text so that your HTML page renders the words “Woohoo! I just created my first web page!” to the browser.
Feeling fancy? Add a line break and another sentence saying, “Hello, world!”
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>My First HTML Page</title>
</head>
<body>
WOOHOO! I just created a webpage!
<br>
Hello, World!
</body>
</html>