-
Notifications
You must be signed in to change notification settings - Fork 3
/
wiki.html
63 lines (60 loc) · 2.33 KB
/
wiki.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="index.css">
<title>wiki</title>
</head>
<body>
<header></header>
<div class="container">
<nav id="nav"></nav>
<main>
<h1>📦 Center</h1>
<br/>
<nav class="navWidth">
<a href="./index.html">index</a>
<a href="./wiki.html">WIKI</a>
</nav>
<br/>
<section>
<article>
<table id="wikiTable" cellspacing="10" cellpadding="5">
<tr>
<th>No.</th>
<th>태그</th>
<th>내용</th>
<th>링크</th>
</tr>
<tr>
<td>1.</td>
<td>#마이크로서비스</td>
<td>마이크로서비스는 무엇인가</td>
<td><a href="https://nginxstore.com/blog/microservices/%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%EC%84%9C%EB%B9%84%EC%8A%A4-%EC%95%84%ED%82%A4%ED%85%8D%EC%B2%98msa-%ED%8C%A8%ED%84%B4%EC%9D%98-%EC%9D%B4%ED%95%B4/">링크</a></td>
</tr>
<!-- <tr>
<td>
<details open>
<summary>전체 보기</summary>
<ol>
<li>보유중인 현금: $500.00</li>
<li>요금: $75.30</li>
<li>지불 마감일: 5/6/19</li>
</ol>
</details>
</td>
</tr> -->
</table>
</article>
</section>
</main>
</div>
</body>
<script type="text/javascript" src="./index.js"></script>
<script type="text/javascript">
let tableItems = document.getElementById("wikiTable");
console.log(tableItems.childNodes.length);
console.table(tableItems.childNodes);
</script>
</html>