<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
span {
display: block;
padding: 5px 15px;
}
span:nth-last-child(2) {
font-style: italic;
color: green;
font-size: 20px;
}
</style>
</head>
<body>
<p>
<span>
Line №1
</span>
<span>
Line №2
</span>
<span>
Line №3
</span>
<span>
Line №4
</span>
</p>
</body>
</html>