-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintroduction_JS.html
19 lines (19 loc) · 1.38 KB
/
introduction_JS.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction to Javascript</title>
</head>
<body style="background-color: #D4C16A; margin-top: 5px;">
<img style="float: right; height: 275px; width: 25%;" src="images/javascript_img.jpg" alt="JS image">
<div style="background-color: darkturquoise; text-align: center; color: azure; font-size: 200%;">
<h2 style="margin: 0px; text-align: center;">Introduction to</h2>
<h1 style="margin: 0px; text-align: center; font-size: 600%;">Javascript</h1>
</div>
<p style="color: white; font-size: 140%;">
JavaScript is a lightweight, cross-platform and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. JavaScript contains a standard library of objects, like Array, Date, and Math, and a core set of language elements like operators, control structures, and statements. According to a recent survey conducted by Stack Overflow, JavaScript is the most popular language on earth.
With advances in browser technology and JavaScript having moved into the server with Node.js and other frameworks, JavaScript is capable of so much more.
</p>
</body>
</html>