27/03/2013, 05:20
|
|
Respuesta: Lineas a izquierda y derecha de texto No sé si he entendido muy bien la pregunta, pero si quieres un H2 en el texto no hay ningún problema:
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title></title>
<style>
#contenedor{
background:url(http://i537.photobucket.com/albums/ff338/CarbayonesAzules/linea-web.jpg) repeat-x center;
width:50%;
}
#texto{
text-align:center;
width:50%;
background:white;
margin:auto;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="texto"> <h2>EDITORIAL</h2>
</div>
</div>
</body>
</html> |