HTML/CSS/Styles Tags/span

Материал из Web эксперт
Перейти к: навигация, поиск

"span" Example

    
<html>
<head>
<title>span element example</title>
</head>
<body>
<p align="center">
   This <span style="color:#FF0000; font-size:10pt; text-transform:uppercase;">
           paragraph
        </span> 
        has text of 
        <span style="color:blue; font-size:18pt; text-transform:uppercase;">
        three 
        </span> 
        different 
        <span style="color:blue; font-size:14pt; text-decoration:underline;"> 
        styles 
        </span>.
</p>
</body>
</html>