0% found this document useful (0 votes)
0 views

.HTML

Uploaded by

bakhtiarkhan0907
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
0 views

.HTML

Uploaded by

bakhtiarkhan0907
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

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>2. HTML Elements</h2>


<p>HTML elements are the building blocks of HTML pages. They are represented by
tags.</p>

<h2>3. HTML Attributes</h2>


<p>Attributes provide additional information about HTML elements. They are
always specified in the opening tag.</p>

<h2>4. Conclusion</h2>
<p>Understanding the basics of HTML is essential for web development.</p>
</body>
</html>

You might also like