-
Notifications
You must be signed in to change notification settings - Fork 1
/
explore.html
46 lines (45 loc) · 1.82 KB
/
explore.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Trainings</title>
<style>
table, th, td {
border:1px solid black;
}
</style>
<script>
function popUp(){
var popup = document.createElement('div');
popup.className = 'popup';
popup.id = 'test';
var cancel = document.createElement('div');
cancel.className = 'cancel';
cancel.innerHTML = 'X';
cancel.onclick = function (e) { popup.parentNode.removeChild(popup) };
var message = document.createElement('span');
message.innerHTML = "More information ";
popup.appendChild(message);
popup.appendChild(cancel);
document.body.appendChild(popup);
}
</script>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="experience.html">Experience</a>
<a href="explore.html">Explore</a>
</div>
<h1>Certfication</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
<h1>Publications</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
<h1>Coding Footprint</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
<h1>Interests</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
<h1>Extra-curricular</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
<h1>Mentorship activities</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
<h1>Co-curricular</h1> <button onClick="popUp();" align="center">Click for more Info! </button>
</body>