Computer Science Lesson Plan Week 2-Practical
Computer Science Lesson Plan Week 2-Practical
ACADEMIC YEAR-2022-23
Grade
7 Subject: Computer Science Week: 2
:
Teach Ms.
Start 11th
er: Ishrat Topic: Introduction to HTML
date: Dec
Jehan
Learning Students will be able to:
Objectives
Be able to describe what HTML is and its role in the Internet
Know how to make minor edits to the source of an existing HTML page, and
view and understand the results.
Know all the common HTML tags used to structure HTML pages.
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
Note: Only the content inside the <body> section (the white area above) is displayed
in a browser.
Web pages can be created and modified by using professional HTML editors.
However, for learning HTML we recommend a simple text editor like sublime text
editor
Follow the four steps below to create your first web page with Sublime Text Editor
Activities/
worksheet
Step 1: Write Some HTML
<!DOCTYPE html>
<html>
<body>
</body>
</html>
Save the file on your computer. Select File > Save as in the Notepad menu.
You can use either .htm or .html as file extension. There is no difference,
it is up to you.
Open the saved HTML file in your favorite browser (double click on the file, or right-
click - and choose "Open with").