Importante

Você está vendo a versão anterior da nova experiência da Alura que estamos preparando para você. Em breve, ela ganha uma identidade visual novinha totalmente pensada em potencializar seus estudos!

0
respostas

Lista de exercícios 02

style.css

body {
    height: 100vh;
}
  1. 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;
}
    1. e 06.
      index.html
<!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;
}