-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathdiscover.html
executable file
·79 lines (68 loc) · 2.08 KB
/
discover.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>主页</title>
</head>
<link rel="stylesheet" href="style.css">
<body >
<!-- 导航栏 -->
<nav>
<ul>
<ul>
<li><a img="">logo</a></li>
<li><a href="homepage.html">首页</a></li>
<li><a href="discover.html">发现</a></li>
<li><a href="privatelatter.html">私信</a></li>
<li><a href="homepage.html" id="weibo_name"></a></li>
<li><a href="" id="logout">退出登录</a></li>
</ul>
</nav>
<!-- 导航栏 -->
<div class="main">
<!-- 左边导航 -->
<div id="rightcontent">
<a href="homepage.html" >首页</a><br />
<a href="discover.html" >发现</a><br/>
<!-- <a href="login.html">登录</a><br/> -->
<a href="privatelatter.html" >私信</a>
</div>
<div id="leftcontent">
<!-- 我的信息 -->
<div class="myinfomation">
<div class="mf_picture">
<img src=""/>
</div >
<div class="mf_username">
<span id="username">jocelyn<span>
</div>
<div class="mf_info">
<table class="weibo_table">
<tr>
<td><a href="#" >关注</a></td>
<td><a href="#" >粉丝</a></td>
<td><a href="#" >微博</a></td>
</tr>
<tr>
<td><span id="attentions"></span></td>
<td><span id="fans"></span></td>
<td><span id="microblog"></span></td>
</tr>
</table>
</div>
</div>
<!-- 我的信息 -->
<!-- 发布微博 -->
<div class="search">
<input type="text" size="40"/>
<button >搜索</button>
<button>全部用户</button>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/myjs.js"></script>
<script type="text/javascript" src="js/discover.js"></script>
<!-- // <script type="text/javascript" src="privatelatter.js"></script> -->
</html>