make an html program using tags: heading level,Image, Background color
Answers
Answered by
5
Answer:
Its so easy. But the styles can be defined in three ways:
- Inline Style (in any tag)
- Outline Style (in <style> tag between the <head>
- External Style (in separate File)
Explanation:
Sample of HTML5:
<!DOCTYPE html>
<html>
<head>
<title>Sample Document</title>
</head>
<body style="background-image:image_path">
<h1>Most Big Heading</h1>
<h2>Smaller than h2</h2>
<img src="path_of_image"/>
</body>
</html>
Similar questions