-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript.html
More file actions
61 lines (52 loc) · 2.91 KB
/
javascript.html
File metadata and controls
61 lines (52 loc) · 2.91 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="logo">
<img src="./logo.png" alt="logo">
</div>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="clearfix"></div>
<div class="main-blog-section">
<section class="blog-section">
<h1 class="main-heading">What is JavaScript?</h1>
<div class="paragraph-javascript">
<p>JavaScript (often shortened to JS) is a lightweight, interpreted, object-oriented language with first-class functions, and is best known as the scripting language for Web pages, but it's used in many non-browser environments as well.JavaScript, often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, often incorporating third-party libraries.
</p>
</div>
<div class="paragraph-javascript">
<p>JavaScript is a text-based programming language used both on the client-side and server-side that allows you to make web pages interactive. Where HTML and CSS are languages that give structure and style to web pages, JavaScript gives web pages interactive elements that engage a user. Common examples of JavaScript that you might use every day include the search box on Amazon, a news recap video embedded on The New York Times, or refreshing your Twitter feed. <br>
Incorporating JavaScript improves the user experience of the web page by converting it from a static page into an interactive one. To recap, JavaScript adds behavior to web pages.
</p>
</div>
</section>
<section class="blog-list">
<h1>Other Blogs</h1>
<ul>
<li><a href="#">What is JavaScript (JS)?</a></li>
<li><a href="react_js.html" target="_blank">What is React JS?</a></li>
<li><a href="next_js.html" target="_blank">What is Next JS?</a></li>
</ul>
</section>
<div class="clearfix"></div>
<footer>
<p>Copyright © 2022 Made By Rao Muhammad Hanzala</p>
</footer>
</div>
</body>
</html>