Skip to content

Commit d0b7e57

Browse files
committed
Final code for the branch
1 parent f0468f9 commit d0b7e57

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

favicon.png

8.42 KB
Loading

index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)