Introdução ao HTML e ao CSS
Last updated
<a href="http://sitequalquer.com">Clique aqui para acessar um site qualquer</a>
|-----> atributo da tag 'a' (âncora)<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title> Hello, World!</title>
</head>
<body>
<h1> Hello, my World!</h1>
<p>Isso vai aparecer no site.</p>
</body>
</html><nav>
Utilizado aqui para navegar entre as informações do site, do servidor, etc.
</nav>|--> SELETOR
p {
|--> PROPRIEDADE
color : orange;
font-size : 12px;
|-->VALOR
}div {...}
Todo elemento com tag <div>div.suaclasse { ... }
.suaclase { ... }<a class="btn btn-danger">...</a>
<a class="btn btn-success">...</a>.btn {
font-size: 16px;
}
.btn-danger {
background: red;
}
.btn-success {
background: green;
}div#seuID { ... }
#seuID { ... }<head>
<link rel="stylesheet" href="main.css">
</head>