-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb1.html
63 lines (49 loc) · 1.43 KB
/
web1.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
<!doctyoe html>
<html>
<head>
<title>프로그래밍 공부</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1> <a href = "web1.html">Web</a></h1>
<div id = "grid">
<div id = "left-menu">
<div id = "my-study">
<h4>내가 정리한 것들</h4>
<ol>
<li> <a href = "css.html">
html</a></li>
<li> <a href = "my-css.html">
css</a></li>
<li> <a href = "my-JavaScript.html">
javascript</a></li>
</ol>
</div>
<div id = "site">
<h4>참고 사이트</h4>
<ol>
<li> <a href = "https://opentutorials.org/course/3084" target = "_blank" title = "html">
html</a></li>
<li> <a href = "https://opentutorials.org/course/3086" target = "_blank" title = "css">
css</a></li>
<li> <a href = "https://opentutorials.org/course/3085" target = "_blank" title = "JavaScript">
javascript</a></li>
</ol>
</div>
</div>
<div id = "contents">
<p>
<h3>메인 페이지</h3>
<ul>
<li><a href = "https://blog.naver.com/eojin7550?Redirect=Log&logNo=221435354825"
target = "_blank" title = "html">싸지방 dns 다운</a><br></li>
<li><a href = "https://www.naver.com/" target = "_blank" title = "html">네이버</a><br></li>
<li><a href = "https://github.com" target = "_blank" title = "html">GitHub</a><br></li>
<li><a href = "https://www.acmicpc.net" target = "_blank" title = "html">백준 알고리즘</a><br></li>
</ul>
</p>
</div>
</div>
</body>
</html>