206k views
4 votes
Observe the following Web page. Write the HTML program for the following. Draw the output in your notebook on Plain Side only.

A) HTML
B) CSS
C) JavaScript
D) PHP

1 Answer

1 vote

Final answer:

To write an HTML program, you need to use HTML tags to structure your content. Here is an example of a basic HTML program that creates a simple web page with a heading and a paragraph.

Step-by-step explanation:

To write an HTML program, you need to use HTML tags to structure your content. Here is an example of a basic HTML program:

<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first web page.</p>
</body>
</html>

This program creates a simple web page with a heading 'Hello, World!' and a paragraph 'This is my first web page'.

User LiamRyan
by
7.4k points