We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0468f9 commit d0b7e57Copy full SHA for d0b7e57
2 files changed
favicon.png
8.42 KB
index.html
@@ -0,0 +1,22 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+
4
+<head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
8
+ <link rel="icon" type="image/png" href="favicon.png">
9
+ <title>JavaScript embedded into the HTML</title>
10
+</head>
11
12
+<body>
13
+ <script>
14
+ console.log("Greeting from the JavaScript!!!!");
15
16
+ console.log("Greeting from the Embedded JavaScript!!!!");
17
18
+ console.log(2 + 2);
19
+ </script>
20
+</body>
21
22
+</html>
0 commit comments