-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.html
72 lines (66 loc) · 1.81 KB
/
2.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>投广告</title>
</head>
<style type="text/css">
.sub_area {
height: 25%;
display: flex;
align-items: center;
}
.icon {
/* float: left; */
/* background-color: aqua; */
margin-left: 30px;
}
.text {
margin-left: 50px;
font-size: 1.5em;
}
</style>
<body>
<div class="sub_area" style="background-color: yellow">
<div class="icon">
<img src="Picture1.png" height="70" width="70">
</div>
<div class="text">
<p style="font-size: 2em">
$ <span>43.00</span>
</p>
</div>
</div>
<div class="sub_area" style="background-color: green">
<div class="icon">
<img src="Picture2.png" height="70" width="70">
</div>
<div class="text">
<p>
性别:<span>男</span><br>
年龄:<span>30</span><br>
地点:<span>北京</span><br>
行为记录:不可见<br>
购买记录:不可见<br>
</p>
</div>
</div>
<div class="sub_area" style="background-color: aqua">
<div class="icon">
<img src="Picture3.png" height="70" width="70">
</div>
<div class="text">
<p style="font-size: 1.5em">
恭喜 <span>XX</span> 以$ <span></span>竞标成功
</p>
</div>
</div>
<div class="sub_area" style="background-color: orange">
<div class="icon">
<img src="Picture4.png" height="70" width="70">
</div>
<div class="text">
<p style="font-size: 2em">下次再来</p>
</div>
</div>
</body>
</html>