1. (A) Design a web page using different text formatting tags.
<!DOCTYPE html>
<html>
<head>
<title>Bold</title>
</head>
<body>
<!--Normal text-->
<p>Hello GeeksforGeeks</p>
<!--Text in Bold-->
<p><b>Hello GeeksforGeeks</b></p>
<!--Text in Strong-->
<p><strong>Hello GeeksforGeeks</strong></p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Bold</title>
</head>
<body>
<!--Normal text-->
<p>Hello GeeksforGeeks</p>
<!--Text in Bold-->
<p><b>Hello GeeksforGeeks</b></p>
<!--Text in Strong-->
<p><strong>Hello GeeksforGeeks</strong></p>
</body>
</html>
1. (A) Design a web page using different text formatting tags.
Reviewed by admin
on
December 24, 2019
Rating:
No comments: