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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styleheader.css">
<title>Exercicio 2</title>
</head>
<body>
<div>
<header>
<img class="logo" src="logo html.png" alt="logo html5">
</header>
<main class="container">
<h1>Aprendendo <strong class="titulo-blog">HTML</strong> do zero!</h1>
<p>Os elementos HTML ou também chamados de tags HTML, <strong class="texto-destaque">são utilizados para informar ao navegador que tipo de
estrutura é essa que está sendo construída,</strong> podendo ser títulos, parágrafos, imagens, links, entre outros.</p>
<p><strong class="urgente"> Tags semânticas são tags que possuem um significado, que dão sentido a informação de texto ao navegador e buscadores.</strong></p>
<a href="https://www.instagram.com/seuinstagramaqui">Instagram</a>
<a href="https://github.com/seugithubaqui">GitHub</a>
<img src="tela programacao.webp" alt="tela com códigos html">
</main>
<footer>
<h3>Contato:</h3>
<p>Telefone: (xx) xxxx-xxxx</p>
<p>E-mail: seuemail@gmail.com</p>
<a href="https://seusiteaqui.com.br">Seu site aqui!</a>
</footer>
</div>
</body>
</html>
CSS
* {
margin: 0;
padding: 0;
}
body {
height: 100vh;
box-sizing: border-box;
background-color: rgb(27, 27, 27);
}
header {
background-color: rgb(17, 17, 17);
padding-left: 800px;
}
.logo {
margin: 20px 0px;
}
.container {
display: flex;
flex-direction: row;
}
h1 {
color: orangered;
}
.titulo-blog {
color: #00C5DB;
border: 1px solid #00C5DB ;
padding: 10px;
}
h3{
color: orangered;
}
p {
color: white;
font-size: 20px;
}
.texto-destaque {
color: orangered;
}
.urgente {
color: red;
}
footer {
background-color: rgb(17, 17, 17);
padding-left: 800px;
}
a {
color: orangered;
}