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'.