-
Notifications
You must be signed in to change notification settings - Fork 326
/
curso-html.html
24 lines (21 loc) · 1.03 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curso de HTML</title>
<link rel="stylesheet" href="estilos/style.css">
</head>
<body>
<main>
<header>
<h1>Curso de HTML5 e CSS3</h1>
</header>
<article>
<p>A <abbr title="HyperText Markup Language">HTML</abbr> é uma linguagem de marcação para a criação de sites. Atualmente na versão 5, ela usa a semântica dos elementos para criar o conteúdo de uma página Web. Com as <abbr title="Cascading Style Sheets">CSS</abbr>, criamos as configurações visuais que um site vai ter.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/riSVzwlSnhw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<a href="index.html"><img src="imagens/btn-back.png" alt="Voltar"></a>
</article>
</main>
</body>
</html>