-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.html
50 lines (50 loc) · 1.85 KB
/
3.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
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
<!doctype html>
<html>
<head>
<title>WEB - JavaScript</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H79956X6KV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H79956X6KV');
</script>
<!--jquery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="color.js"></script>
</head>
<body>
<h1><a class='title' href="index.html">WEB</a></h1>
<div id="grid">
<ol>
<input class='btn2' type="button" value="Dark" onclick="
/* Light/Dark button*/
LightDarkHandler(this);
">
<li><a class='lis' href="1.html">HTML</a></li>
<li><a class='lis' href="2.html">CSS</a></li>
<li><a class='lis' href="3.html">JavaScript</a></li>
</ol>
<div id="article">
<h2>JavaScript</h2>
<p><a href="https://en.wikipedia.org/wiki/JavaScript" target="_blank" title="JS specification" class="def">JavaScript</a>
is an object-based scripting programming language.<br>This language is mainly used within web browsers, and has the ability to access built-in objects of other application programs. <br>It is also used for server programming like a runtime environment such as Node.js.
</p>
</div>
</div>
<p><div id="disqus_thread"></div>
<script>
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://web1-fhlffkwjme.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</p>
</body>
</html>