HTML
Fontes Externas (Montserrat)
<head>
<meta charset="UTF-8">
<title>barbearia Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap" rel="stylesheet">
</head>
Trabalhando com mapas (Localização Alura SP)
<section class="mapa">
<h3 class="titulo-principal">Nósso Estabelecimento</h3>
<p>Nósso estabelecimento está localizado no coração da cidade.</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3656.4498404748992!2d-46.63452058502166!3d-23.588194784669575!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce5a2b2ed7f3a1%3A0xab35da2f5ca62674!2sCaelum%20-%20Escola%20de%20Tecnologia!5e0!3m2!1spt-BR!2sbr!4v1649889006304!5m2!1spt-BR!2sbr" width="100%" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
Importanto Vídeo (Haircut)
<div class="video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/wcVVXUV0YUY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
CSS
Fonte
body {
font-family: 'Montserrat', sans-serif;
}
Mapa
.mapa {
padding: 3em 0;
}
.mapa p {
margin: 0 0 2em;
text-align: center;
}
Video
.video {
width: 560px;
margin: 1em auto;
}