Skip to content

Commit c62b7a5

Browse files
committed
javascript basics
0 parents  commit c62b7a5

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

Java Script Basics/index.html

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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+
<title>Java Script Basics</title>
8+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
9+
<link rel="stylesheet" href="css/style.css">
10+
<style>
11+
* {
12+
margin: 0;
13+
padding: 0;
14+
}
15+
</style>
16+
</head>
17+
18+
<body>
19+
20+
<div class="container">
21+
<div class="row">
22+
<h1 class="mt-2 fs-1">JavaScript</h1>
23+
<h4 class="fs-4 mt-1">What is JavaScript?</h4>
24+
<ol style="margin-left: 20px;">
25+
<li>JavaScript is a programming Language of Server Side</li>
26+
<li>JavaScript is the world's most popular programming language. </li>
27+
<li>JavaScript is clientside scripting Language</li>
28+
<em>JavaScript is known as a client-side scripting language because it primarily runs in the user's web
29+
browser rather than on the web server.</em>
30+
</ol>
31+
32+
<h4>Execution on the Client-Side:</h4>
33+
<p><b>* Browser Environment:</b> JavaScript code is embedded within HTML and is executed by the browser on
34+
the user's device. This allows the code to interact directly with the HTML and CSS of the webpage,
35+
making it possible to create dynamic and interactive user experiences.</p>
36+
<p><b>* Real-Time Interaction:</b> Because JavaScript runs on the client-side, it can respond to user
37+
actions (like clicks, form submissions, etc.) immediately, without needing to send requests to the
38+
server.
39+
</p>
40+
<p><b>* Standardization: </b>JavaScript is supported by all major web browsers, making it the standard
41+
language for client-side scripting on the web.
42+
</p>
43+
44+
<em>While JavaScript is traditionally known as a client-side language, it's worth noting that with the advent of technologies like Node.js, JavaScript can also be used on the server-side. However, its original and most common use is still in the client-side environment.</em>
45+
46+
<h4 class="mt-3">JavaScript Version</h4>
47+
<ol style="margin-left: 20px;">
48+
<li>Maintain By Community</li>
49+
<li>ECMAScript 1(1997) </li>
50+
<li>ECMAScript 2015 or ECMAScript 6 or ES6</li>
51+
</ol>
52+
53+
<h4 class="mt-3">What we will Learn</h4>
54+
<ol style="margin-left: 20px;">
55+
<li>Fundamental Of JavaScript</li>
56+
<li>Object Oriented Programming</li>
57+
<li>Document Object Model(DOM)</li>
58+
<li>Regular Expression</li>
59+
<li>Error Handling</li>
60+
<li>Asychronous Programming</li>
61+
<li>AJAX, Fetch API</li>
62+
<li>Ecmascript 6(ES^)</li>
63+
</ol>
64+
</div>
65+
66+
67+
</div>
68+
69+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
70+
<p></p>
71+
</body>
72+
73+
</html>

0 commit comments

Comments
 (0)