-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
96 lines (91 loc) · 1.84 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>成都云图时代人工智能有限公司</title>
</head>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
padding-bottom: 80px;
/* background: gray; */
}
header {
height: 50px;
border-bottom: 1px solid #ccc;
line-height: 50px;
padding: 0 20px;
}
.footer {
position: absolute;
bottom: 0;
display: inline-block;
padding: 30px;
width: 100vw;
bottom: 10px;
font-size: 14px;
width: 100%;
text-align: center;
/* color: #ccc; */
}
.left, .right {
width: 50%;
padding: 60px;
display: flex;
justify-content: center;
}
.right {
display: flex;
justify-content: center;
}
.wrap {
width: 100%;
display: flex;
align-items: center;
}
img {
width: 300px;
}
.text {
color: gray;
font-size: 28px;
line-height: 2;
}
.text-wrap {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: 2;
}
</style>
<body>
<header>成都云图时代</header>
<div class="wrap">
<div class="left">
<img src="/campus.png"/>
</div>
<div class="right text-wrap">
<div class="text">智慧校园、人工智能</div>
<div class="text">互联网、机器人</div>
</div>
</div>
<div class="wrap">
<div class="left text-wrap">
<div class="text">加入我们</div>
<div class="text">smackgg@gmail.com</a></div>
</div>
<div class="right">
<img src="/discover.png"/>
</div>
</div>
<a class="footer" href="https://beian.miit.gov.cn/#/Integrated/index">Copyright © 2020 蜀ICP备19039367号</a>
</body>
</html>