-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoticeSibunseol_1.html
58 lines (56 loc) · 2.02 KB
/
noticeSibunseol_1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=chrome">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UML</title>
<style>
div#mobile {
box-sizing: border-box;
width: 300px;
height: 500px;
margin: 20px auto;
border: 6px solid black;
border-radius: 40px 40px 40px 40px;
padding: 20px;
background-image: url('symbol.jpg');
background-repeat: no-repeat;
background-position: 50% 70%;
}
p {
width: 200px;
height: 20px;
margin: 20px auto;
border-radius: 10px 10px 10px 10px;
padding: 20px;
background-color: lightskyblue;
text-align: center;
font-size: 20px;
font-weight: bold;
}
table {
border: solid 1px black;
border-collapse:collapse;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<div id="mobile">
<h4 style="text-align: center;">•∙• ――――― •∙•</h4>
<p id="head">공지사항 조회</p>
<h3 style="text-align: center;">과목 : 시스템 분석 설계 및 지식 재산</h3>
<h4 style="text-align: center;">제목 : 시스템분석설계및지식재산 Zoom 링크 공지</h4>
<h5 style="text-align: center;">안녕하세요, 노기섭 교수입니다.
수강신청해주신 학생들께 감사드립니다.
이번학기 동안 사용할 시스템분석설계및지식재산 Zoom 링크를 공지합니다.
주제: 시스템분석설계 및 지식재산(2학년, 수13:30)
시간: 되풀이 회의입니다. 언제든 회의 가능<br>
회의 ID: 811 xxxx xxxx<br>
암호: yyyyyy
</h5>
</div>
</body>
</html>