-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest3.html
More file actions
44 lines (44 loc) · 870 Bytes
/
Copy pathtest3.html
File metadata and controls
44 lines (44 loc) · 870 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="script/jquery-3.2.1.min.js"></script>
<meta charset="UTF-8">
<title>test4</title>
</head>
<body>
<script type="text/javascript">
var Array = [];
Array.en = [
"sunday",
"monday",
"tuesday",
"wednesday",
"thursday",
"friday",
"saturday"
];
Array.heb = [
"yom-rishon",
"yom-shini",
"yom-shloshi",
"yom-ravii",
"yom-hameshi",
"yom-shishi",
"yom-shabbat"
];
alert(Array.en[1] + " " + Array.heb[4])
</script>
<h1>h1</h1>
<h2>h2</h2>
<h3>h3</h3>
<h4>h4</h4>
<p id="id1">Paragraph1</p>
<p id="id2">Paragraph2</p>
<p id="id3">Paragraph3</p>
<p id="id4">Paragraph4</p>
<a href="https://ru.wikipedia.org/wiki/HTML"></a>
<a href="https://www.w3schools.com/html"></a>
<a href="htmlbook.ru"></a>
<a href="ru.html.net "></a>
</body>
</html>