-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (53 loc) · 1.48 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="jamal" class="dynamic-shadow format">
Jamal Rasool
</div>
<div id="bilal" class="dynamic-shadow format">
Bilal Rasool
</div><div class="wrapper"></div>
<button class="dynamic-shadow btn" onclick="swap('jamal','bilal')">
Swap the Text
</button>
<hr>
<div class="container">
<button class="accordion dynamic-shadow">Bilal Rasool</button>
<div class="panel">
<p>Front End Web Developer</p>
</div>
<button class="accordion dynamic-shadow">Jamal Rasool</button>
<div class="panel">
<p>Learning Game Development</p>
</div>
<button class="accordion dynamic-shadow">Mansha Mujahid</button>
<div class="panel">
<p>I am father of both above.</p>
</div>
</div>
<hr>
<div class="tab dynamic-shadow">
<button class="tablinks" onclick="openCity(event, 'London')">Bilal</button>
<button class="tablinks" onclick="openCity(event, 'Paris')">Jamal</button>
<button class="tablinks" onclick="openCity(event, 'Tokyo')">Mansha</button>
</div>
<div id="London" class="tabcontent dynamic-shadow">
<h3>Bilal Rasool Mujahid</h3>
<p>Front End Web Developer</p>
</div>
<div id="Paris" class="tabcontent dynamic-shadow">
<h3>Jamal</h3>
<p>Learning Game Developement</p>
</div>
<div id="Tokyo" class="tabcontent dynamic-shadow">
<h3>Mansha</h3>
<p>I am father of both above.</p>
</div>
<hr>
<script src="script.js"></script>
</body>
</html>