-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1023 Bytes
/
index.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
29
30
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript</title>
<!-- podemos linkar com o html usando blocos de código dentro do próprio html,
dentro das tags <script></script> ou atraves de um arquivo externo usando
<script src= ></script>-->
<!-- podemos chamar quantos blocos script for necessario importando outro arquivo externo
<script src= ></script> ou abrindo novas tags <script></script>, digitando o código entre
as tags -->
</head>
<body>
<h1>Curso de Javascript</h1>
<input type="text"
placeholder="teste de precedência"
id="nome"
disabled="disabled">
<!-- dentro do html
<script>
alert("ola, bem vindo ao curso!")
</script>
-->
<script src="meu_script.js"></script><!-- importado externamente-->
</body>
</html>