.HTML
.HTML
DOCTYPE html>
<html lang="EN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Topics</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-image: URL('your-image-url.jpg'); /* Add your image URL here
*/
background-size: cover; /* This makes the image cover the entire
background */
background-repeat: no-repeat; /* Prevents the image from repeating */
color: white; /* Change text color for better visibility */
}
h1 { color: dark blue; }
h2 { color: dark-green; }
p { line-height: 1.5; }
</style>
</head>
<body>
<h1>HTML Topics</h1>
<h2>1. Introduction to HTML</h2>
<p>HTML stands for Hyper Text Markup Language. It is the standard markup
language for creating web pages.</p>
<h2>4. Conclusion</h2>
<p>Understanding the basics of HTML is essential for web development.</p>
</body>
</html>