-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.42 KB
/
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
31
32
33
34
35
36
37
38
39
<html>
<head>
<title>Project On Console</title>
<link rel="stylesheet" href="style.css">
<h1 class="center">Project On Console</h1>
</head>
<body>
<p class="plr-40">Visual Studio Code is a free source-code editor made by Microsoft for Windows, Linux and macOS.
Features include
support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and
embedded Git.</p>
<p class="plr-40">Google Search Console is a web service by Google Formerly Google Webmasters which allows
webmasters to check
indexing status and optimize visibility of their websites. Until May 20, 2015 the service was called Google
Webmaster Tools.</p>
</body>
<script>
console.log("My first console app");
var first_name = "Shaurya ";
var second_name = "Rawat";
var full_name = first_name.concat(second_name);
console.log(full_name);
var num1 = 8;
var num2 = 6;
var addition = num1+num2;
var subtraction=num1-num2;
var multiplication= num1*num2;
var division= num1/num2;
console.log("Number 1 = "+num1);
console.log("Number 2 = "+num2)
console.log("Addition of number 1 and number 2= "+addition);
console.log("Subtraction of number 1 and number 2= "+subtraction);
console.log("Multiplication of number 1 and number 2= "+multiplication);
console.log("Division of number 1 and number 2= "+division);
</script>
</html>