-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.rsts1, .rsts2 {
flex: 1;
width: 400px;
margin: auto;
}
.rsts1 {
background: red;
}
.rsts2 {
background: blue
}
.wrap {
display: flex;
}
</style>
</head>
<body>
<div class="wrap">
<div class="rsts1">
<legend>검색</legend>
<h1>RSTS 잠만 자는 RSTS</h1>
<a href="http://hmantioch.kr/">
<p>제일 잠을 많이 자는 유준하, 이승호, 박지선</p>
</a>
</div>
<div class="rsts2">
<h1>RSTS 제일 수업을 열심히 들은 사람</h1>
<a href="http://hmantioch.kr/">
<p>제일 수업을 열심히 들은 사람 - 없다..........</p>
</a>
</div>
</div>
</body>
</html>