-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_table.html
31 lines (30 loc) · 975 Bytes
/
my_table.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
<!DOCTYPE html>
<html>
<head>
<style>
img {
width: 1024;
height: 768;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<img src="pages/My Table ver.3.png" alt="myTable" usemap="#myTableMap">
<map name="myTableMap">
<!-- side nav bar -->
<area target="" alt="logo" title="logo" href="mainPageVer3.html" coords="234,252,34,73" shape="rect">
<area target="" alt="real_or_fake_info" title="real_or_fake_info" href="real_or_fake_info.html" coords="214,309,55,273" shape="rect">
<area target="" alt="World" title="World" href="mainPageVer3.html" coords="163,352,88,329" shape="rect">
<area target="" alt="my_table" title="my_table" href="my_table.html" coords="197,632,43,601" shape="rect">
<area target="" alt="sign_out" title="sign_out" href="world.html" coords="43,777,190,811" shape="rect" onclick="signOut()">
</map>
<script>
function signOut() {
alert("You are signed out!");
}
</script>
</body>
</html>