forked from danielscarvalho/FTT-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaulajs00.html
More file actions
28 lines (24 loc) · 899 Bytes
/
Copy pathaulajs00.html
File metadata and controls
28 lines (24 loc) · 899 Bytes
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>
<head>
<title>JavaScript Aula 00</title>
</head>
<body>
<h1>JavaScript Aula 00</h1>
<h2>script in line</h2>
<p>
Referências:
<ul>
<li><a target="_new" href="https://developer.mozilla.org/pt-BR/">MDN</a></li>
<li><a target="_new" href="https://books.goalkicker.com">Livro sobre JavaScript, HTML e CSS (PDF)</li>
<li><a target="_new" href="https://www.w3schools.com/">W3CSchools</a>
</ul>
<q>Para ver o console do browser use as teclas: SHIFT + CRTL + i</q>
</p>
<p>
100 + 1000 + 12000 =
<script>document.write(100 * 1000 / 12000)</script>
<!-- Isso não é uma boa prática de programação -->
</p>
</body>
</html>