Principais propriedades
Algumas propriedades
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Exemplo</title>
</head>
<body>
<h1>Eu sou o título</h1>
<p>Mas eu sou mais importante, pois sou um parágrafo!</p>
</body>
</html>body {
margin: 0;
}
h1 {
color: white;
background-color: #5EC8AE;
margin: 0;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
font-family: monospace;
}
p {
border: 10px solid purple;
margin: 0;
text-align: end;
font-size: medium;
font-family: Verdana, Tahoma, sans-serif;
}
Last updated