-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.html
More file actions
27 lines (27 loc) · 1.13 KB
/
3.html
File metadata and controls
27 lines (27 loc) · 1.13 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
<!doctype html>
<html>
<head>
<title>WEB1 - JavaScript</title>
</head>
<body>
<h1><a href = "index.html"><font color = "red">WEB</font></h1>
<ol>
<li> <a href = "1.html" >HTML</a> </li>
<li> <a href = "2.html" >CSS </a></li>
<li> <a href = "3.html" > JavaScript </a></li> <br>
</ol>
<h2>JavaScript</h2>
<p>
<a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target = "_blank" title = "javascript description"> JavaScript (JS) </a>
is a lightweight, interpreted, or just-in-time compiled
programming language with first-class functions. While it is most well-known
as the scripting language for Web pages, many non-browser environments also
use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a
prototype-based, multi-paradigm, single-threaded, dynamic language, supporting
object-oriented, imperative, and declarative (e.g. functional programming)
styles. Read more about JavaScript.
</p>
<img src = "coding.jpg" width=100%>
</body>
</html>