-
Notifications
You must be signed in to change notification settings - Fork 0
/
five.html
42 lines (39 loc) · 853 Bytes
/
five.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
31
32
33
34
35
36
37
38
39
40
41
42
<!-- ============= JS dalam head ============== -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<script>
console.log("Halo Adhitya");
</script>
</head>
<body>
<h2>Javascript di dalam head</h2>
</body>
</html> -->
<!-- ============= JS dalam body ============== -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<h2>Javascript di dalam body</h2>
<script>
console.log("Halo dhit")
</script>
</body>
</html> -->
<!-- ============= JS extenal ============== -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h2>Halo bro tes</h2>
<script src="basic/five.js"></script>
</body>
</html>