-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserPage.html
More file actions
59 lines (58 loc) · 1.41 KB
/
userPage.html
File metadata and controls
59 lines (58 loc) · 1.41 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/userPage.css" />
<script type="text/javascript" src="js/jquery-1.8.3.min.js" ></script>
</head>
<body>
<div class="contentdiv">
<div class="headBackground" id="header">
<div class="headPic" id="headpicture"></div>
</div>
<div class="mainBackground" id="content">
<table id="contentTable" cellspacing="0" cellpadding="0" border="0">
<tr>
<td id="itema">
<div class="item">
<a>
<p class="info"></p>
<center>个人资料</center>
</a>
</div>
</td>
<td id="itemb">
<div class="item">
<a>
<p class="goods"></p>
<center>已发布商品</center>
</a>
</div>
</td>
</tr>
<tr>
<td id="itemc">
<div class="item">
<a>
<p class="like"></p>
<center>收藏</center>
</a>
</div>
</td>
<td id="itemd">
<div class="item">
<a>
<p class="message"></p>
<center>消息中心</center>
</a>
</div>
</td>
</tr>
<button id="logout" value="退出">退出</button>
</table>
</div>
</div>
<script type="text/javascript" src="js/userPage.js" ></script>
</body>
</html>