-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 774 Bytes
/
index.html
File metadata and controls
26 lines (21 loc) · 774 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
<html>
<head>
<title>Console Web App</title>
</head>
<body>
<h1>My first Project on Console</h1>
<h3>I am too lazy to type here</h3>
<h2>But just for the sake of this, Console screen is especially useful when u r trying to share a particular project
to
someone, where you can Type in notes for them in the CONSOLE screen</h2>
<script>
console.log("First Console Project By Ani :)");
var first_name = "Ani";
var mid_name = "The";
var last_name = " Hype-Master";
var full_name = first_name.concat(last_name);
console.log(full_name);
//*COULD NOT DO THE MATH SECTION, DID NOT LEARN IT THAT CLASS DUE TO TIME ISSUES AND STUFF
</script>
</body>
</html>