Programming Assignment: Creating an HTML Document

A passionate full-stack developer from @ePlus.DEV
Search for a command to run...

A passionate full-stack developer from @ePlus.DEV
No comments yet. Be the first to comment.
Daily Tech Brief — 06/08/2026 Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary Claude Code 2.1.223 vá nhiều đường обх

Overview In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure out how to

🏕️ Arcade Base Camp August 2026 Welcome to Arcade Base Camp August 2026, where you’ll develop key Google Cloud skills and earn an exclusive credential that will open doors to the cloud for you. No pr

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary Google Cloud giới thiệu hai Database Operations Agents hỗ trợ onboard

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary SK hynix và Sandisk công bố đặc tả mở đầu tiên cho High Bandwidth Fla

In this exercise you will you will practice creating a simple HTML document.
Tips: Before you Begin
To view your code and instructions side-by-side, select the following in your VSCode toolbar:
View -> Editor Layout -> Two Columns
To view this file in Preview mode, right click on this README.md file and
Open PreviewSelect your code file in the code tree, which will open it up in a new VSCode tab.
Drag your assessment code files over to the second column.
Great work! You can now see instructions and code at the same time.
Objectives
Add the DOCTYPE.
Add the HTML, head and body elements.
Add the title element.
Add the text to the body element.
Follow the Step by Step instructions below:
Open the index.html file.
Type <!DOCTYPE html> on the first line.
Create your html element on the next line. This will be the root element of the document.
Add the head element inside the html element. The head element contains data about the HTML document that does not display in the web browser.
Add the title element inside the head element.
Add the text My First HTML Document inside the title element. The content of the title element is the text that will be displayed in the web browser tab.
Close the head tag and add the body element. The ``body element contains all displayable content of the webpage.
Add the text I successfully created my first document inside the body element. This displays on the webpage.
Nice work! To complete this assessment:
Save your file through File -> Save
Select "Submit Assignment" in your Lab toolbar.
Your code will be autograded and return feedback shortly on the "Grades" tab.
You can also see your score in your Programming Assignment "My Submission" tab.
Ensure that the DOCTYPE is declared at the beginning of the file.
Remember that HTML documents have a specific structure.
Review the lessons What is HTML? and HTML Documents.
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Document</title>
</head>
<body>
<p>I successfully created my first document</p>
</body>
</html>
