-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 947 Bytes
/
index.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Variables name:legal & illegal</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="blue"></div>
<div class="heading">
<h1>Variables name : legal & illegal</h1>
</div>
<div class="blue-buttom">
<div class="para">
Assinment # 4 <br />
JAVASCRIPT
</div>
</div>
<h2>Rule For naming JS variable</h2>
<br />
<p>
Varable name can only contain ,numbers, $ and _.For example :
$my_1stVarable
<br />Variable mush begin with a letter, $ and _.For example : $name,
_name or name <br />Varable name are case sensitive <br />Varable name
should not be JS keywords
</p>
<br />
<h3>write JAVASCRIPT:</h3>
<script src="./app.js"></script>
</body>
</html>