Computer Science, asked by parvathiumaparvathiu, 11 hours ago

Write the HTML tags to digday sunders of the world by using surdrend Sat. And use all the formatting tag ​

Answers

Answered by diliptanu174
5

Formatting Text with HTML

<!DOCTYPE html>

<html>

<body>

<h2>Welcome To GeeksforGeeks</h2>

<!--Text in Strong-->

<strong>Hello Geeks</strong>

<br>

<!--Text in small-->

<small>Hello Geeks</small>

<br>

<!--Text in Highlight-->

<mark>Hello Geeks</mark>

</body>

</html>

Example: In this example, we simply display text in HTML strong, small, and Highlight formatting respectively.

Similar questions