- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript.html
More file actions
Latest commit
78 lines (75 loc) · 3.26 KB
/
Copy pathjavascript.html
File metadata and controls
78 lines (75 loc) · 3.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Básico</title>
<linkrel="stylesheet" href="style.css">
</head>
<body>
<divclass="container">
<divclass="header">
<h1>JavaScript Basic</h1>
</div>
<divclass="navbar">
<ahref="">Home</a>
<ul>
<li><ahref="">JavaScript Overview</a></li>
<ul>
<li><ahref="">Variable Declaration</a></li>
<li><ahref="">Variable Assignment</a></li>
<li><ahref="">Data Type</a></li>
<li><ahref="">Conditionals</a></li>
<li><ahref="">Loops</a></li>
<li><ahref="">Function</a></li>
</ul>
<li><ahref="">Proyects</a></li>
<li><ahref="">Assignment</a></li>
<li><ahref="">Quiz</a></li>
</ul>
</div>
<divclass="main-content">
<h2>JavaScript Information</h2>
<p>JavaScript is a cross-plataform,
object-oriented scripting language.
JavaScript is extremely popular for a variety
of reason. It is a small and lightweight lenguaje
allowing maximun flexibility for developers to
take it in a brush of diferent directions.
JavaScript lives inside a host environment
(a web browser or Node server), it can be connect
to the objects of these environment to provide
programmatic control over them</p>
<ul>
<li><ahref="">Variable Declaration</a>
<p>JavaScript Variable are
containers for storing data values- imagine a cup fill with coffee,
the cup holfs the coffee, a variable holds a value.
All JavaScript variable must be identified wirh uniques names
are colled identifiers. var x;
</p>
</li>
<li><ahref="">Variable Assignment </a>
<p>JavaScript Variable are
containers for storing data values- imagine a cup fill with coffee,
the cup holfs the coffee, a variable holds a value.
All JavaScript variable must be identified wirh uniques names
are colled identifiers. var x;
</p>
</li>
<li><ahref="">Data Types</a>
<p>JavaScript Variable are
containers for storing data values- imagine a cup fill with coffee,
the cup holfs the coffee, a variable holds a value.
All JavaScript variable must be identified wirh uniques names
are colled identifiers. var x;
</p>
</li>
</ul>
</div>
<divclass="footer">
<p>For more useful Information check out this url <ahref="">JavaScript!</a></p>
</div>
</div>
</body>
</html>