-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreal_or_fake_info.html
36 lines (32 loc) · 1.09 KB
/
real_or_fake_info.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
<!DOCTYPE html>
<html>
<head>
<style>
img {
width: 1024;
height: 768;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<img src="pages/Fake or Nah Info.png" alt="real_or_fake_info" usemap="#image-map">
<map name="image-map">
<!-- 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()">
<!-- content -->
<area target="" alt="q1_q" title="q1_q" href="q1_q.html" coords="1418,899,250,71" shape="rect">
</map>
<script>
function signOut() {
alert("You are signed out!");
}
</script>
</body>
</html>