This is some text and <strong>this part is within strong tag</strong> this part is normal
Output is here
This is some text and this part is within strong tag this part is normal
Adding style to <strong> tag
By using style we can change background color of strong tag.
<html>
<head>
<title>(Type a title for your page here)</title>
<style>
strong {
background-color: yellow;
}
</style>
</head>
<body>
<p> Plus2net.com is a site for <strong>web programming</strong> and learning SEO</p>
</body>
</html>
<em> tag
The text part with <em> is here
This is some text and <em>this part is emphasized</em> this part is normal
Output is here
This is some text and this part is emphasized this part is normal
Adding style to <em> tag
By using style we can add underline to our emphasized text inside <em> tag
<html>
<head>
<title>(Type a title for your page here)</title>
<style>
em {
text-decoration: underline;
}
</style>
</head>
<body>
<p> Plus2net.com is a site for <em>web programming</em> and learning SEO</p>
</body>
</html>