-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding.html
More file actions
47 lines (46 loc) · 1.46 KB
/
coding.html
File metadata and controls
47 lines (46 loc) · 1.46 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding</title>
<link rel ="stylesheet" href ="coding.css">
</head>
<body>
<div id = "container">
<header> <!--첫번쨰줄 "로고"만 -->
<div id ="logo">
<a href="coding.html">
<h1>Coding</h1>
</a>
</div>
</header>
<div id ="links">
<ul>
<li>
<a href="coding/java.zip" download>
<span id ="quick-icon1"></span>
<p>java</p>
</a>
</li>
<li>
<a href="coding/c++.zip" download>
<span id ="quick-icon2"></span>
<p>C++</p>
</a>
</li>
<li>
<a href="coding/html.zip" download>
<span id ="quick-icon3"></span>
<p>html</p>
</a>
</li>
</ul>
</div>
<br>
<div id = "text">
<a href="https://github.com/seokjea">나의 코딩 모음집</a>
</div>
</div>
</body>