Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Código text-decoration

<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>Text</title>
</head>

<style>
h1 {
    text-decoration: overline;
}

h2 {
    text-decoration: line-through;
}

h3 {
    text-decoration: underline;
}
h4 {
    text-decoration: blink;
}
</style>
</html></div>
<body>

<h1>
Con el valor overline</h1>
<h2>
Con el valor line-through</h2>
<h3>
Con el valor underline</h3>
<h4>
Con el valor blink</h4>
</body>

<html>