-
Notifications
You must be signed in to change notification settings - Fork 0
/
curso-html.html
28 lines (24 loc) · 1.06 KB
/
curso-html.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!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">
<title>Título do site</title>
<link rel="stylesheet" href="estilos/style.css">
</head>
<body>
<main>
<header>
<article>
<h2>Curso de HTML5 e CSS3</h2>
</article>
</header>
<article>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis accusantium eaque alias minus? Corrupti cumque neque atque autem omnis? Voluptas et nostrum corporis iure cum? A et corporis aliquam illo!</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/riSVzwlSnhw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<a href="index.html"><img src="imagens-site/seta.png" alt="Voltar"></a>
</article>
</main>
</body>
</html>