-
Notifications
You must be signed in to change notification settings - Fork 0
/
JavaScript.html
25 lines (25 loc) · 1.09 KB
/
JavaScript.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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Introduction</title>
</head>
<body>
<h1>JavaScript Introduction</h1>
<p>
JavaScript is a programming language that adds interactivity to your website. This happens in
games, in the behavior of responses when buttons are pressed or with data entry on forms; with
dynamic styling; with animation, etc. This article helps you get started with JavaScript and
furthers your understanding of what is possible.
</p>
<p>
JavaScript ("JS" for short) is a full-fledged dynamic programming language that can add
interactivity to a website. It was invented by Brendan Eich (co-founder of the Mozilla
project), the Mozilla Foundation, and the Mozilla Corporation.
</p>
<p>
JavaScript is versatile and beginner-friendly. With more experience, you'll be able
to create games, animated 2D and 3D graphics, comprehensive database-driven apps,
and much more!
</p>
</body>
</html>