Skip to content

Commit 665ede8

Browse files
author
johirulshaky
committed
latest update
0 parents  commit 665ede8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1852
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions

img/css.png

9 KB

img/html.png

5.33 KB

img/javascript.png

21.6 KB

img/jquery.png

112 KB

index.html

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="stylesheet" href="style.css">
9+
<title>Javascript</title>
10+
</head>
11+
12+
<body>
13+
14+
<!-- 854 line js code -->
15+
<h1 id="heading1">Hello World</h1>
16+
<!-- 858 line js code -->
17+
<h1 class="heading2">Hello Bangladesh</h1>
18+
<h1 class="heading2">Hello Bangladesh</h1>
19+
<!-- 864 line js code -->
20+
<h1>Hello German</h1>
21+
<!-- 869 line js code -->
22+
<h2 id="query1">This is Bangladesh</h2>
23+
<!-- 870 line js code -->
24+
<h2 class="query2">This is canada</h2>
25+
<!-- 872 line js code -->
26+
<h3>This is japan</h3>
27+
<!-- 874 line js code -->
28+
<a href="#">Link 0</a>
29+
<!-- 878 line js code -->
30+
<ul>
31+
<li><a href="#">Link 1</a></li>
32+
</ul>
33+
<!-- 882 line js code -->
34+
<div class="myDiv">
35+
<a href="#">Link 2</a>
36+
</div>
37+
<!-- 886 line js code -->
38+
<p>This is paragraph</p>
39+
<p id="buttonId">This is paragraph</p>
40+
<!-- 890 line js code -->
41+
<button onclick="myButtonId()">Up</button>
42+
<!-- 894 line js code -->
43+
<button onclick="myButtonCls()">Down</button>
44+
<!-- 897 line js code -->
45+
<button onclick="htmlBtn()">Html</button>
46+
<!-- 901 line js code -->
47+
<button onclick="cssBtn()">Css</button>
48+
<!-- 905 line js code -->
49+
<button onclick="jsBtn()">Javascript</button>
50+
<!-- 894 line js code -->
51+
<p class="buttonCls"></p>
52+
<!-- 898,902,906 line js code -->
53+
<img id="btnImg" src="#" alt="" width="300"><br/>
54+
<!-- 911-919 line js code -->
55+
<a href="#">Link 3</a>
56+
<!-- 926-946 line js code -->
57+
<div id="createElement">
58+
<h4>Create Element1</h4>
59+
<h4>Create Element2</h4>
60+
</div>
61+
<!-- 963 line js code -->
62+
<button onclick="prev()">Previous</button>
63+
<!-- 949 line js code -->
64+
<img src="img/html.png" alt="" width="300" height="150">
65+
<!-- 953 line js code -->
66+
<button onclick="next()">Next</button>
67+
<!-- 974 line js code -->
68+
<button onclick="addStyle()">Add style</button>
69+
<!-- 993 line js code -->
70+
<button onclick="removeStyle()">Remove style</button>
71+
<!-- 975,994 line js code -->
72+
<p id="paraId">This is a paragraph</p>
73+
<!-- 998-1002 line js code -->
74+
<h1 id="clickStyle">Click to view style changes</h1>
75+
<h1>You have not clicked any button</h1>
76+
<!-- 1006,1008 line js code -->
77+
<button class="myButton">Button 1</button>
78+
<button class="myButton">Button 2</button>
79+
<button class="myButton">Button 3</button>
80+
<!-- 1030 line js code -->
81+
<button class="myBtn a">a</button>
82+
<button class="myBtn b">b</button>
83+
<button class="myBtn c">c</button>
84+
<!-- 1070 line js code -->
85+
<textarea name="" id="keyTextArea" cols="30" rows="7"></textarea>
86+
<!-- 1070,1073 line js code -->
87+
<p id="keyPress">Keypress listener</p>
88+
<p>Enter a number between 5 to 10:</p>
89+
<!-- 1093 line js code -->
90+
<input type="text" id="numTextField" />
91+
<!-- 1092 line js code -->
92+
<button id="checkBtn">Check</button>
93+
<!-- 1108 line js code -->
94+
<canvas id="myCanvas" width="400px" height="300px"></canvas>
95+
96+
97+
98+
99+
<!-- end javascript code -->
100+
101+
<script src="style.js"></script>
102+
<!-- <script src="style.js" type="module"></script> -->
103+
</body>
104+
105+
</html>

myModule.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// export let text = "welcome to es6 module";
2+
3+
// export function setText(txt) {
4+
// text = txt;
5+
// }

sounds/0.mp3

3.95 KB
Binary file not shown.

sounds/1.mp3

3.89 KB
Binary file not shown.

sounds/10.mp3

4.78 KB
Binary file not shown.

0 commit comments

Comments
 (0)