Computer Science, asked by akankshaprasad25, 10 months ago

make an html program using tags: heading level,Image, Background color​

Answers

Answered by pattayetujhe8
5

Answer:

Its so easy. But the styles can be defined in three ways:

  1. Inline Style    (in any tag)
  2. Outline Style  (in <style> tag between the <head>
  3. 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