Mão na Massa N°3
- Criando e linkando o arquivo CSS index1.html
<!DOCTYPE html>
<html>
<head>
<title>Portfólio</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<header>
</header>
<main>
<h1>Meu Titulo</h1>
<p>Meu paragrafo</p>
</main>
<footer>
</footer>
</body>
</html>
style1.css
body {
background-color: black;
color: white;
}
- Definindo estilos básicos index2.html
<!DOCTYPE html>
<html>
<head>
<title>Portfólio</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<header>
</header>
<main>
<h1>Meu Titulo</h1>
<p>Meu paragrafo</p>
</main>
<footer>
</footer>
</body>
</html>
style2.css
body {
background-color: indigo;
color: white;
}
- Estilizando com cores e formatos index3.html
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfólio</title>
<link rel="stylesheet" href="style3.css">
</head>
<body>
<header>
</header>
<main>
<h1>Eleve seu negócio digital a outro nível
<strong>um Front-end de qualidade!
</strong></h1>
<p>Olá! Sou Joana Santos, desenvolvedora
Front-end com especialidade em React, HTML e
CSS. Ajudo pequenos negócios e designers a
colocarem em prática boas ideias. Vamos
conversar?</p>
<button href="https://instagram.com
/ricardo.cuba.p"><bold>Instgram</bold></button>
<button href="https://instagram.com
/RichardrmCubaS"><bold>Github</bold></button>
<img src="/img/Imagem.png" alt="Foto de Joana
Santos Programando">
</main>
<footer>
</footer>
</body>
</html>
style3.css
body {
background-color:darkslategrey;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
color: lightcyan;
font-size: 32px;
}
p {
color: white;
font-size: 20px;
}
strong {
color: turquoise;
}
button {
background-color: aqua;
border-color: darkcyan;
color: black;
border-radius: 10px;
width: 150px;
height: 50px;
font-size: 18px;
}
- Personalizando a página com CSS index4.html
<!DOCTYPE html>
<html>
<head>
<title>Portfólio</title>
<link rel="stylesheet" href="style4.css">
</head>
<body>
<header>
<h1>Meu cabecelho do <strong>Titulo da pagina</strong></h1>
</header>
<main>
<p>Meu paragrafo com informação do tema estudado</p>
</main>
<footer>
Rodapé da pagina
</footer>
</body>
</html>
style4.css
body {
background-color: black;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
color: lightcyan;
font-size: 32px;
}
p {
color: white;
font-size: 20px;
}
footer{
color: lightcyan;
font-size: 14px;
}
strong {
color: turquoise;
}