-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyDroplet.html
163 lines (131 loc) · 3.81 KB
/
MyDroplet.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width,initial-scale=1 user-scalable=no">
<title>刘昊</title>
<!--用来加载外部资源的标签-->
<!--相对路径和绝对路径-->
<link rel="short icon" href="Resource/icon.png">
<!--加载外部样式CSS,一个项目有很多地方样式都一样时-->
<link rel="stylesheet" href="ExternalStyle.css">
<style>
.MD_external_div .MD_bg_img{
width:100%;
}
.MD_external_div{
position: relative;
}
.MD_inner_div{
left: 50%;
top: 50%;
margin-left: -33px;
margin-right: -60px;
position: absolute;
width: 66px;
height: 120px;
text-align: center;
}
button{
background: rgb(40,133,202);
width: 66px;
height:20px;
}
.MD_third_div{
border: 1px solid #CCCCCC;
width: 90%;
height: 50px;
margin: 10px auto;
border-radius: 5px;
line-height: 50px;
;
}
.MD_left_img{
float: left;
margin-left: 10px;
margin-top:15px;
margin-right:20px;
}
.MD_right_img{
float: right;
margin-left: 10px;
margin-top:15px;
}
</style>
</head>
<body>
<!--第一部分-->
<header class="DS_header" >
<span>我的小滴</span>
</header>
<!--第二部分-->
<div class="MD_external_div">
<img class="MD_bg_img" src="Resource/banner5.png" alt="">
<div class="MD_inner_div">
<img class="MD_head_img" src="Resource/head.png" alt="">
<span>华衫科技</span>
<button onclick="exitlogin()" >退出登录</button>
<script>
function exitlogin() {
location.href="index.html";
}
</script>
</div>
</div>
<!--第三部分-->
<div class="MD_third_div">
<img class="MD_left_img" src="Resource/gr_1.png" alt="">
<span>我的客户</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<div class="MD_third_div">
<img class="MD_left_img" src="Resource/gr_1.png" alt="">
<span>我的余额</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<div class="MD_third_div">
<img class="MD_left_img" src="Resource/gr_1.png" alt="">
<span>注册客户</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<div class="MD_third_div">
<img class="MD_left_img" src="Resource/gr_1.png" alt="">
<span>修改密码</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<!--第四部分-->
<footer>
<ul>
<li>
<a href="DropletService.html">
<img src="Resource/nav10.png" alt="">
<span > 小滴服务 </span> <!--加载行内样式CSS,某个样式代码很少,样式出现次数少-->
</a>
</li>
<li>
<a href="BusinessProject.html">
<img src="Resource/nav20.png" alt="">
<span>企业项目</span>
</a>
</li>
<li>
<a href="ServiceProcess.html">
<img src="Resource/nav30.png" alt="">
<span>服务流程</span>
</a>
</li>
<li>
<a href="Platform.html">
<img src="Resource/nav40.png" alt="">
<span>平台风采</span>
</a>
</li>
<li>
<a href="MyDroplet.html">
<img src="Resource/nav51.png" alt="">
<span style="color: red">我的小滴</span>
</a>
</li>
</ul>
</footer>
</body>
</html>