-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR&D.html
89 lines (88 loc) · 2.17 KB
/
R&D.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>科研日常</title>
</head>
<body>
<div
style="
background-color: rgb(0, 78, 162);
text-align: center;
padding: 10px;
"
>
<h1 style="color: rgb(255, 255, 255); margin: auto">科研日常</h1>
<div
style="
display: flex;
justify-content: space-between;
color: white;
border-color: aliceblue;
border-width: 1px;
margin: auto;
"
>
<p>机器人种类</p>
<p>关键技术</p>
<p>发展方向</p>
</div>
</div>
<p>嗨,你来啦!RD</p>
<div style="display: flex">
<div
style="
width: 170px;
height: 300px;
background-color: rgb(78, 121, 177);
margin-top: 10px;
text-align: center;
margin: 6px;
"
>
<h1 class="title">移动机器人</h1>
</div>
<div
style="
width: 170px;
height: 300px;
background-color: rgb(78, 121, 177);
margin-top: 10px;
text-align: center;
margin: 6px;
"
>
<h1 class="title">协作机械臂</h1>
</div>
<div
style="
width: 170px;
height: 300px;
background-color: rgb(78, 121, 177);
margin-top: 10px;
text-align: center;
margin: 6px;
"
>
<h1 class="title">复合机器人</h1>
</div>
<div
style="
width: 170px;
height: 300px;
background-color: rgb(78, 121, 177);
margin-top: 10px;
text-align: center;
margin: 6px;
"
>
<h1 class="title">特种机器人</h1>
</div>
</div>
<div style="margin-top: 10px; text-align: left">
<a href="/index.html">返回主页</a>
</div>
</body>
</html>