-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha2.html
More file actions
40 lines (38 loc) · 1.64 KB
/
a2.html
File metadata and controls
40 lines (38 loc) · 1.64 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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!-- assignment2-PRINTING CONTENTS OF THE CURRENT WINDOW -->
<html>
<head>
<font color="orange">
<font size="10">
<center>PRINTING CONTENTS OF THE CURRENT WINDOW </center>
</font>
</font>
<title> Assignment2</title>
</head>
<body bgcolor="green">
<left>
<font color="yellow">
<font size="4">
<center>
<h1> JavaScript </h1>
</font>
</font>
</center>
<ol>
<font color="yellow">
<font size="4">
<li>JavaScript often abbreviated as JS, is a programming language that conforms to the ECMAScript specification.</li>
<li>JavaScript is high-level,often just-in-time compiled, and multi-paradigm.</li>
<li>It has curly-bracket syntax, dynamic typing, prototype-based object-orientation, and first-class functions.</li>
<li>Alongside HTML and CSS, JavaScript is one of the core technologies of the World Wide Web.</li>
<li>JavaScript enables interactive web pages and is an essential part of web applications.</li>
<li>The vast majority of websites use it for client-side page behavior.</li>
<li>All major web browsers have a dedicated JavaScript engine to execute it.</li>
</font>
</font>
</ol>
</left>
<center>
<button onclick="window.print()">Print this page</button>
</center>
</body>
</html>