-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.26 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>转载请备注</title>
<link href="./webgradients.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="magic_lake box" >001-magic_lake</div>
<div class="night_fade box" >002</div>
<div class="spring_warmth box" >003</div>
<div class="juicy_peach box" >004</div>
<div class="young_passion box" >005</div>
<div class="lady_lips box" >006</div>
<div class="sunny_morning box" >007</div>
<div class="rainy_ashville box" >008</div>
<div class="frozen_dreams box" >009</div>
<div class="winter_neva box" >010</div>
<div class="dusty_grass box" >011</div>
<div class="tempting_azure box" >012</div>
<div class="heavy_rain box" >013</div>
<div class="amy_crisp box" >014</div>
<div class="mean_fruit box" >015</div>
<div class="deep_blue box" >016</div>
<div class="ripe_malinka box" >017</div>
<div class="cloudy_knoxville box" >018</div>
<div class="malibu_beach box" >019</div>
<div class="new_life box" >020</div>
</div>
</body>
<style type="text/css">
.wrapper{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 100%;
height: 500px;
}
.box{
margin: 5px;
width: 150px;
height: 150px;
}
</style>
</html>