Computer Science, asked by IQueenI, 8 months ago

❤HELLO MATES❤
Write an HTML program to display multiple headings in multiple forms using H1 to H6 tags. ​

Answers

Answered by ishasingh81
6

Explanation:

< !DOCTYPE html>

<html>

<head>

<h1>THIS IS FIRST EXAMPLE</h1>

<h2>THIS IS SECOND EXAMPLE</h2>

<h3>THIS IS THIRD EXAMPLE</h3>

<h4>THIS IS FOURTH EXAMPLE</h4>

<h5>THIS IS FIFTH EXAMPLE</h5>

<h6>THIS IS SIXTH EXAMPLE</h6>

</head>

</html>

Answered by Anonymous
15

Explanation:

<html>

<head>

<title>my first webpage </title>

</head>

<body>

<h1> My Webpage1

</h1>

<h2> My webpage2

</h2>

<h3>my webpage3

</h3>

<h4>my webpage4

</h4>

<h5>my webpage5

</h5>

<h6> my webpage6

</h6>

</body>

</html>

hope this helps you

Similar questions