Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Cluaz/60ec9ebe95e3929d10632b59db69945e to your computer and use it in GitHub Desktop.
Save Cluaz/60ec9ebe95e3929d10632b59db69945e to your computer and use it in GitHub Desktop.
17 - Atividade: Utilizando os Seletores CSS
<head>
<title>Kenzie Academy Profile</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="content">
<h1>Kenzie Academy Brasil</h1>
<h3>Sobre:</h3>
<p>
A Kenzie Academy é uma escola de codificação e design em Indianapolis, Indiana. Nosso programa de 6 meses a 2 anos com aprendizado pago de 1 ano é uma nova alternativa às faculdades tradicionais e aos bootcamps de codificação de curto prazo.
</p>
<div class="offeredPrograms">
<h3 id="tittlePrograms">Programas oferecidos:</h3>
<ol>
<li><a href="#">Software Engineering</a></li>
<li><a href="#">UX Engineering</a></li>
<li id="unavailable"><a href="#">Digital Marketing</a></li>
</ol>
</div>
<div class="knowMore">
<p> Kenzie está empolgada com os <span id=""> alunos</span>. <p>
<h3>Kenzie Academy Website</h3>
<p>
Saiba mais sobre a Kenzie Academy <a href="https://www.kenzie.academy/">here</a>.
</p>
</div>
</div>
</body>
#excited {
color: green;
}
.text {
color: white;
background-color: #3c86e1;
padding: 10px;
}
.mainTitle {
text-align: center;
}
#unavailable > a {
color: ;
}
#tittlePrograms {
text-align: center;
font-size: 20px;
color: #1c3869;
}
knowMore {
margin: 5px;
padding: 10px;
border-style: dotted;
border-color: #3c86e1;
}
.content {
width: 100%;
max-width: 700px;
margin: 0 auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment