-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex3.html
24 lines (24 loc) · 1.12 KB
/
ex3.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
<!DoCTYPE HTML>
<html>
<head>
<title>WEB1 - JavaScript</title>
<meta charset="utf-8">
<style>
.js {
font-weight: bold;
color: red;
}
#first {
color: green;
}
</style>
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<h2 style="background-color: coral; color: powderblue;">JavaScript란 무엇인가?</h2>
<p><span id="first" class="js">JavaScript</span> (/ˈdʒɑːvəˌskrɪpt/),often abbreviated as JS, is a high-level, interpreted programming language that conforms to the ECMAScript specification.
<span class="js">JavaScript</span> has curly-bracket syntax, dynamic typing, prototype-based object-orientation, and first-class functions. Alongside HTML and CSS, <span class="js">JavaScript</span>
is one of the core technologies of the World Wide Web.<span class="js">JavaScript</span> enables interactive web pages and is an essential part of web applications. The vast
majority of websites use it, and major web browsers have a dedicated <span class="js">JavaScript</span> engine to execute it.</p>
</body>
</html>