-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.html
33 lines (26 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>WEB1-HTML</title>
<meta charset="utf-8">
<script src="color.js"></script>
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<input id="night_day" type="button" value="night" onclick="nightDayHandler(this)
">
<ol>
<li><a href="1.html" target="_blank" title="HTML5 spec" >HTML</a></li>
<li><a href="2.html">CSS</a></li>
<li><a href="3.html">JavaScript</a></li>
</ol>
<h2>JavaScript란 무엇인가</h2>
<p style="margin-top:140px">
JavaScript (/ˈdʒɑːvəskrɪpt/), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web,
alongside HTML and CSS. As of 2023, 98.7% of websites use JavaScript on the client side for webpage behavior,
[10] often incorporating third-party libraries.
All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.
</p>
<img src="smp_pict.jpg" width="100%">
</body>
</html>