Subject: Computer Science Chapter 2: Introduction To HTML (Additional Chapter) Notes - Class 8 I. Fill in The Blanks
Subject: Computer Science Chapter 2: Introduction To HTML (Additional Chapter) Notes - Class 8 I. Fill in The Blanks
Joseph’s School
HTML Practical
1. Welcome program:
<!doctype HTML>
<html>
<head>
<title> First web page </title>
</head>
<body>
Let’s explore the wonderful world of HTML
</body>
</html>
2. Program to change background color:
<!doctype HTML>
<html>
<head>
<title> Change background color </title>
</head>
<body bgcolor = “red”>
The background color will be changed from white to
red.
</body>
</html>
*****