style.css
body {
height: 100vh;
}
- e 03.
style.css
body {
height: 100vh;
width: 100%;
justify-content: center;
display: flex;
border: 6px solid blue;
background-color: black;
color: white;
}
reset.css
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
- e 06.
index.html
- e 06.
<!DOCTYPE html>
<html>
<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>Exercicio 02</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main class="container">
<div>
<p>O intúito desse projeto web...</p>
</div>
<div>
<p>O projeto web também oferece...</p>
</div>
<img class="contorno" src="html.png" alt="imagem projeto">
</main>
<footer></footer>
</body>
</html>
style.css
body {
height: 100vh;
width: 100%;
justify-content: center;
display: flex;
border: 6px solid blue;
background-color: black;
color: white;
}
.container {
display: flex;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
}
.titulo-destaque {
color: #22d4fd;
}
.contorno {
border: 3px solid red;
padding: 15px;
}
reset.css
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}