Computer Science, asked by 23alishakumarii, 24 days ago

write an HTML program to display largest heading on web page ?

Answers

Answered by TheMoonlìghtPhoenix
3

Explanation:

Answer:-

  • Largest heading of a web page is shown by the H1 tag.
  • So, we will bifurcate the headings as :-
  1. H1 - Largest
  2. H2
  3. H3
  4. H4
  5. H5
  6. H6 - Smallest
  • In default, H6 is the size of the text.
  • Other than this, we can also set the size of the text as 5 px, where px is pixels. Values are changeable.
  • This is as follows:-

<html>

<head>

<title> Largest Heading </title>

</head>

<body>

<h1> My first web page is this ! </h1>

</body>

</html>

  • However these are not applicable when we create tables using html.

.

Similar questions