-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path首页.html
35 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta content="telephone=no" name="format-detection" />
<title>首页</title>
<link rel="stylesheet" href="css/page.css">
</head>
<body>
<main class="wrapper">
<div class="home-container">
<div class="user-header">
<div class="user-bd">
<span class="avatar">
<img src="images/avatar.jpg" alt="">
</span>
<p class="title">余额:1000.00</p>
</div>
</div>
<nav class="home-nav">
<a href="#" class="nav-item">首页</a>
<a href="#" class="nav-item">排行</a>
<a href="#" class="nav-item">体现</a>
<a href="#" class="nav-item">经销商</a>
<a href="#" class="nav-item">推广</a>
<a href="#" class="nav-item">营销</a>
</nav>
</div>
</main>
</body>
</html>