Write a html program to print your introduction using formatting tag
Answers
HTML | Text Formatting
HTML provides us with the ability for formatting text just like we do it in MS Word or any text editing software. In this article, we would go through few such options.
Making text Bold or Strong: We can make the text bold using the <b>tag. The tag uses both opening and closing tag. The text that needs to be made bold must be within <b>and </b> tag.
We can also use the <strong> tag to make the text strong, with added semantic importance. It also opens with <strong> and ends with </strong> tag.
Example:
<!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>
Output:

Making text Italic or emphasize:The <i> tag is used to italicise the text. It opens with <i> and ends with </i> tag.
The <em> tag is used to emphasizethe text, with added semantic importance. It opens with <em> and ends with </em> tag.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Italic</title>
</head>
<body>
<!--Normal text-->
<p>Hello GeeksforGeeks</p>
<!--Text in Italics-->
<p><i>Hello GeeksforGeeks</i></p>
<!--Text in Emphasize-->
<p><em>Hello GeeksforGeeks</em></p>
</body>
</html>
Output:

Highlighting a text: It is also possible to highlight a text in HTML using the <mark> tag. It has a opening tag <mark> and a closing tag </mark>.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Highlight</title>
</head>
<body>
<!--Text in Normal-->
<p>Hello GeeksforGeeks</p>
<!--Text in Highlight-->
<p><mark>Hello GeeksforGeeks</mark></p>
</body>
</html>
Output:

Making a text Subscript or Superscript: The <sup> element is used to superscript a text and <sub> element is used to subscript a text. They both have opening and a closing tag.
I HOPE IT WILL HELP YOU.
Answer:
Captain America Shield html, body { background:#0846A8; height: 500px; } .container { width:100%; height: 100%; display: flex; justify-content: center; align-items: center; } .circle { border-radius: 50%; display: flex; flex-direction: row; justify-content: center; align-items: center; border:1px solid #000; } .outer-lv3 { background-image: linear-gradient(#870000,#FF4040,#870000); height: 260px; width: 260px; -webkit-animation: turning 8s infinite linear; animation: turning 8s infinite linear; } @-webkit-keyframes turning { 0% {transform: rotate(0deg)} 100% {transform: rotate(360deg)} } @keyframes turning { 0% {transform: rotate(0deg)} 100% {transform: rotate(360deg)} } .outer-lv2 { background: #fff; background-image: linear-gradient(#DBD9D9,#FAFAFA,#DBD9D9); height: 210px; width: 210px; } .outer-lv1 { background-image: linear-gradient(#870000,#FF4040,#870000); height: 150px; width: 150px; } .center { background-image: linear-gradient(#0846A8,#277AFF,#0846A8); height: 100px; width: 100px; border-radius: 50%; position: relative; overflow: hidden; border:1px solid #000; } .arrow { border-top: 35px solid #EDE8E8; border-bottom: 48px solid rgba(0,0,0,0.0); border-left: 48px solid transparent; border-right: 48px solid transparent; position: absolute; height: 0; width: 0; } .top { top: 35px; left: 2px; } .left { transform: rotate(72deg); top: 16px; left: -24px; } .right { transform:
Read more on Brainly.in - https://brainly.in/question/19873091#readmore