-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (43 loc) · 972 Bytes
/
index.html
File metadata and controls
51 lines (43 loc) · 972 Bytes
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
<!DOCTYPE html> <!-- index.html -->
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>개인 과제 리스트</title>
<style>
a:link {
color: blue;
text-decoration: none;
}
a:visited {
color: purple;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
color: red;
text-decoration: none;
}
</style>
</head>
<body>
<h1>웹서버응용 과제 리스트</h1>
<h3 style="text-align:right">20151637박영철</h3>
<ul>
<hr/>
<li>1주 1회차</li>
<ol>
<li><a href=https://pyc.github.com/java/hw1_1_1.html>1주차과제테스트</a></li>
</ol>
<hr />
<li>1주 2회차</li>
<ol>
<li>
<h6>2회차주소를쓰시오</h6>
</li>
</ol>
</ul>
</body>
</html>