-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoticeJava.html
69 lines (66 loc) · 2.33 KB
/
noticeJava.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
<!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: 22px;
font-weight: bold;
}
table {
border: solid 1px black;
border-collapse:collapse;
padding: 20px;
text-align: center;
}
td {
border: 2px solid lightslategrey;
color: darkslateblue;
font-weight: bold;
}
</style>
</head>
<body>
<div id="mobile">
<h4 style="text-align: center;">•∙• ――――― •∙•</h4>
<p id="head">공지사항 조회</p>
<h3 style="text-align: center;">과목 : java 프로그래밍2</h3>
<table border="1" align = "center">
<tr>
<td>4</td><td onclick="document.location.href='noticeJava_1.html'">6주차 실시간 강의</td> <td>2021-<br>09-28</td>
</tr>
<tr>
<td>3</td><td onclick="document.location.href='noticeJava_1.html'">5주차 = 동영상 강의</td> <td>2021-<br>09-22</td>
</tr>
<tr>
<td>2</td><td onclick="document.location.href='noticeJava_1.html'">4주차 실시간 온라인<br>강의 접속 주소</td> <td>2021-<br>09-15</td>
</tr>
<tr>
<td>1</td><td onclick="document.location.href='noticeJava_1.html'">3주차 실시간 온라인<br>강의</td> <td>2021-<br>09-07</td>
</tr>
</table>
</div>
</body>
</html>