-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_1.html
More file actions
61 lines (54 loc) · 1.55 KB
/
Copy pathBasic_1.html
File metadata and controls
61 lines (54 loc) · 1.55 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BasicJavaScript_1</title>
<style>
html{
background: #000;
color: aliceblue;
}
ol{
color: rgb(117, 177, 177);
}
q{
background-color: #802020;
border-radius: 1px 30px ;
padding: 5px;
}
</style>
</head>
<body>
<h1 style="font-family: sans-serif;
text-align: center;">
Hello JavaScript Learner
</h1>
<h2 style="background-color: blueviolet;
text-align: center;">
JavaScript Variable Defination and Details
</h2>
<h3>
Ryan Dahl is the founder of Node.Js and Deno.
</h3>
<p style="background-color: rgb(236, 255, 127);
color: #000;
font-family: sans-serif;
text-align: center;
font-size: 25px;">
Javascript Standard { Documentation } form for Web Developer :
</p>
<ol>
<li><a href="https://tc39.es/ecma262/">
ECMAScript® 2026 Language Specification</a></li>
<li><a href="https://ecma-international.org/publications-and-standards/standards/">ECMA-262{Ecma International}
</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">Mdn
</a></li>
</ol>
<q>
Need for documention to grow-up Web-Developing skill.
</q>
<script src="BasicJavaScript_1.js"></script>
</body>
</html>