EN
HTML - italic text
0 points
In this article, we would like to show how to create italic text in HTML.
Quick solution:
xxxxxxxxxx
1
<em>italic</em>
or
xxxxxxxxxx
1
<i>italic</i>
In this section, we present how to make the italic text with <em>
tag.
Practical example:
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
/* style properties here */
6
</style>
7
</head>
8
<body>
9
<p>Some text with <em>italic</em> element.</p>
10
</body>
11
</html>
Note:
You can also use the CSS solution from the following article: CSS - italic text.