What is the exact difference between Bold <b></b> & strong tag <strong></strong>, italic <i></i> & Emphasized tags<emp></emp>
<!doctype html>
<html>
<head>
<title> Formatting Elements</title>
</head>
<body>
<p>This is a<b> BOLD </b>text</p>
<p>This is a<strong> STRONG</strong> text</p>
<p>This is a<i> ITALIC </i>text</p>
<p>This is a<em> EMPHASIZED </em> text</p>
<body>
</html>
i got output as below:
I not Finding any Difference ..
so, what is d Diff between Bold & strong tag, italic & Emphasized tags