how to use mark tag in html
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.
<!Doctype html>
<!doctype html> always be the first line of any HTML document.
Step 2 ]
<html> and </html>
html is the root element.
<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
<body> and </body>
body is main content area.
All visible content inside to the <body> tagStep 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

No comments:
Post a Comment