-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainPageVer3.html
37 lines (33 loc) · 1.49 KB
/
mainPageVer3.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
<!DOCTYPE html>
<html>
<head>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<img src="pages/Main Page ver.3.png" alt="mainPageVer3" usemap="#mainPageVer3Map">
<map name="mainPageVer3Map">
<!-- 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="topic_img" title="topic_img" href="comment_blank.html" coords="249,116,1409,390" shape="rect">
<area target="" alt="topic_title" title="topic_title" href="comment_blank.html" coords="275,413,999,437,331,426" shape="rect">
<area target="" alt="topic_txt" title="topic_txt" href="comment_blank.html" coords="277,451,1356,447,1353,474,1384,478,1379,488,1028,489,1028,514,276,512" shape="poly">
<area target="" alt="topic_comment" title="topic_comment" href="comment_blank.html" coords="280,520,324,549" shape="rect">
</map>
<script>
function signOut() {
alert("You are signed out!");
}
</script>
</body>
</html>