-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavaScript.html
More file actions
46 lines (45 loc) · 1.85 KB
/
Copy pathjavaScript.html
File metadata and controls
46 lines (45 loc) · 1.85 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="javaScript.css">
<title>Document</title>
</head>
<body>
<div id="container">
<h1 id="header">JavaScript Basics</h1>
<div id="rightSide">
<p><a href="#">Home</a></p>
<ul>
<li><a href="#">JavaScript Overview</a>
<ul id="list">
<li><a href="#">Variable Declaration</a> </li>
<li><a href="#">Variable Assignment</a></li>
<li><a href="#">Data Type</a></li>
<li><a href="#">Conditionals</a></li>
<li><a href="#">Loops</a></li>
<li><a href="#">Function</a></li>
</ul>
</li>
<li><a href="#">Projects</a></li>
<li><a href="#">Assignments</a></li>
<li><a href="#">Quiz</a></li>
</ul>
</div><!--end of rightside-->
<div id="leftSide">
<h2>JavaScript Basics</h2>
<p>JavaScript is cross-platform,objectoriented scripting language.JavaScript
is extermily popular for a veriety reasons.Its small and lightweight language
The first version of the Web browser, Mosaic Netscape 0.9, was released
in late 1994. Within four months it had already taken three-quarters of
the browser market and became the main browser for Internet in the 1990s.
To avoid trademark ownership problems with the NCSA, the browser was sub
sequently renamed Netscape Navigator in the same year, and the company
took the name Netscape Communications.</p>
</div><!-- end of leftside-->
<p id="footer">For more use information check this url: <a href="#">JavaScript!</a></p>
</div><!--end of container-->
</body>
</html>