Supreeth J

Supreeth J

  • 825
  • 692
  • 53.5k

Diff between Bold & strong tag, italic & Emphasized tags

Sep 29 2015 9:09 AM
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

Answers (2)