Skip to content

Instantly share code, notes, and snippets.

@ramons03
Created March 4, 2012 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramons03/1973959 to your computer and use it in GitHub Desktop.
Save ramons03/1973959 to your computer and use it in GitHub Desktop.
cursowebappcss
body{
font-family:Tahoma,Arial,sans-serif;
font-size: 13px;
color:black;
background:white;
margin:8px;
}
h1{
font-size:19px;
margin-top:15px;
margin-bottom:5px;
border-bottom:1px solid black
}
.sombreado{
background:#d0d0ff;
}
<html>
<head>
<title>practica css</title>
<link href="cursowebapp.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Encabezado h1 de la primera seccion</h1>
<p>Here is the first paragraph, containing text that really doesn't have any use or meaning; it just prattles on and on with no end whatsoever, no point to make, really no purpose for existence at all.</p>
<div class="sombreado">
<h1>Otro Encabezado h1</h1>
<p>Another paragraph</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment