-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypage.html
125 lines (115 loc) · 3.08 KB
/
mypage.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 模板</title>
<link rel="stylesheet" href="bs/css/bootstrap.css">
<script src="jquery-3.2.1.min.js"></script><!--版本低可能不支持bootstrap -->
<script src="bs/js/bootstrap.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
/*头部开始*/
.avtar{
display: inline-block;
width: 100px;
height: 100px;
border-radius: 50%;
background: url(images/3.jpg) center;
background-size: cover;
transition: 1s;
}
.head{
padding: 20px;
background: #019875;
}
.user{
margin-top:25px;
}
/*头部结束*/
/*导航栏开始*/
.nav_li{
margin-top: 10px;
height: 70px;
width: 32%;
}
.d {
display: block;
text-align: center;
}
.d span{
display:block;
margin: 0 auto;
height: 20px;
}
a{
color: black;
}
/*导航栏结束*/
/*箭头*/
.glyphicon-chevron-right{
float: right;
margin-right: 5px;
}
</style>
</head>
<body>
<div class="container">
<!-- 头部开始 -->
<div class="row head">
<div class="col-xs-4">
<span class="avtar">
</span>
</div>
<div class="col-xs-4 user ">
<h3>王小二</h3>
</div>
</div>
<!-- 头部结束 -->
<!-- 导航栏开始 -->
<ul class="nav nav-pills nav_ul ">
<li class=" nav_li">
<a href="" class="d">
<span class="glyphicon glyphicon glyphicon-menu-hamburger "></span>
个人资料
</a>
</li>
<li class=" nav_li">
<a href="" class="d">
<span class="glyphicon glyphicon glyphicon-menu-hamburger "></span>
我的预约
</a>
</li>
<li class=" nav_li">
<a href="" class="d">
<span class="glyphicon glyphicon glyphicon-menu-hamburger "></span>
试教安排
</a>
</li>
</ul>
<!-- 导航栏结束 -->
<!-- 具体条目开始 -->
<div class="list-group">
<a href="#" class="list-group-item">
<span class="glyphicon glyphicon-chevron-right "></span>
预约记录
</a>
<a href="#" class="list-group-item">
<span class="glyphicon glyphicon-chevron-right "></span>
预约记录
</a>
<a href="#" class="list-group-item">
<span class="glyphicon glyphicon-chevron-right "></span>
预约记录
</a>
<a href="#" class="list-group-item">
<span class="glyphicon glyphicon-chevron-right "></span>
预约记录
</a>
<a href="#" class="list-group-item">
<span class="glyphicon glyphicon-chevron-right "></span>
预约记录
</a>
</div>
<!-- 具体条目结束 -->
</div>
</body>
</html>