<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>otros atributos</title>
</head>
<body >
Otros atributos de texto

<div style="text-transform: uppercase">esto está escrito con minúsculas en el código fuente</div>
<div style="color: #f00">color del texto</div>
<div style="text-align: center">alineación centrada</div>
<div style="text-indent: 50px">Sangría de primera línea</div>
<div style="text-decoration: underline">Subrayado</div>
<div style="text-decoration: underline;  text-transform: uppercase; text-align: center">Subrayado, centrado y mayúsculas</div>



</body>
</html>