ad

Showing posts with label html mark tag. Show all posts
Showing posts with label html mark tag. Show all posts

Monday, November 10, 2025

how to use mark tag in html

how to use mark tag in html

https://webdesigningtheory.blogspot.com

how to use mark tag in html

 Example

<!DOCTYPE html>
<html>
 <body>
  <h2> how to use mark tag in html</h2>
<p>student learn <mark> HTML </mark> programming language</p>
    <p> Student learn <mark>CSS</mark> Programming language</p>

 </body>

</html>

how to use mark tag in html

Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h2> how to use mark tag in html</h2>

<h2>  display title create second-level heading  bold  larger text.</h2>

Step 5]

<p>student learn <mark> HTML </mark> programming language</p>
    <p> Student learn <mark>CSS</mark> Programming language</p>

<p> defines paragraph  of text.
<mark> highlights text with yellow background default. 

Step 6]

closing the Tag

</body>
</html>

how to use mark tag in html

Output


Related Post :-

html reset button example

frameset tag in html with example

how to create checbox in html