Bootstrap italics text style
Use em to mark italics text style
For emphasizing a snippet of text with italics we can use <em>
to mark
text.
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!-- w ww.j a v a2 s . c om-->
<body style='margin:20px;'>
<em>rendered as italicized text</em>
</body>
</html>