-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path个人中心.html
40 lines (34 loc) · 1.44 KB
/
个人中心.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>个人中心</title>
<link rel="stylesheet" type="text/css" href="个人中心.css">
<link rel="stylesheet" type="text/css" href="public.css"><!--外部样式-->
<script type="text/javascript" src="动画.js"></script>
</head>
<body>
<h1>课业难题交流</h1>
<div id="first" onclick=window.open("首页(待登录).html") onmouseover="over(this)" onmouseout="out(this)"></div>
<div id="textOne">
<p>退出登录</p>
</div>
<div id="second" onclick=window.open("提问.html") onmouseover="over(this)" onmouseout="out(this)"></div>
<div id="textTwo">
<p>我要提问</p>
</div>
<div id="three" onclick=window.open("shouye(denglu).php") onmouseover="over(this)" onmouseout="out(this)"></div>
<div id="textThree">
<p>我要搜索</p>
</div>
<div class="items" id="itemOne" onclick=window.open("user_information.php")>
<p>个人信息</p>
</div><!--点击进入“个人信息”页面-->
<div class="items"id="itemTwo" onclick=window.open("myquestion.php")>
<p>我提出过的问题</p>
</div><!--点击进入“我提出过的问题”页面-->
<div class="items" id="itemThree" onclick=window.open("myreply.php")>
<p>我回答过的问题</p>
</div><!--点击进入“我回答过的问题”页面-->
</body>
</html>