-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.html
More file actions
22 lines (17 loc) · 771 Bytes
/
3.html
File metadata and controls
22 lines (17 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<title>web1 - javascript란 무엇인가</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="index.html">Javascript</a></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>
</ol>
<h2>What is Javascript</h2>
<p><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" title="javascript sepcification"> 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.</p>
</body>
</html>