forked from gustavoguanabara/projeto-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
curso-js.html
23 lines (21 loc) · 1018 Bytes
/
curso-js.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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 JavaScript</title>
<link rel="stylesheet" href="estilos/style.css">
</head>
<body>
<main>
<header>
<h1>Curso de JavaScript Gratis</h1>
</header>
<article>
<p><abbr title="JavaScript">JavaScript</abbr> é uma linguagem de script criada para aumentar a interatividade entre um site e seus visitantes. Os códigos em JS são executados dentro do navegador e dão acesso aos elementos HTML por meio do <abbr title="Document Object Model">DOM</abbr>.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/BXqUH86F-kA" 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>