-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.html
29 lines (26 loc) · 1000 Bytes
/
js.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS</title>
</head>
<body>
<h1>
<a href="index.html">Web</a>
</h1>
<div id="li">
<ol type="1">
<li><a href="html.html">HTML</a></li>
<li><a href="css.html">CSS</a></li>
<li><a href="js.html">JavaScript</a></li>
</ol>
</div>
<h3>JavaScript</h3>
<p>
<a href="https://en.wikipedia.org/wiki/JavaScript">JavaScript</a>, often abbreviated as JS, is a programming language and core technology of the World Wide Web, alongside HTML and CSS. <br>
<br>
As of 2024, 98.9% of websites use JavaScript on the client side for webpage behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.<br>
</p>
</body>
</html>