-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.html
79 lines (75 loc) · 2.87 KB
/
contents.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
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<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>Contents</title>
<link rel="icon" href="https://www.kt.com/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/contents.css">
</head>
<body>
<header>
<nav class="wrap">
<label><strong>KT</strong></label>
<!-- ul>li*3>a -->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contents.html" class="active">Contents</a></li>
<li><a href="index.html">Logout</a></li>
</ul>
</nav>
</header>
<main class="contents">
<section class="wrap">
<div class="contents-wrap">
<input type="text" class="input-address" value="신사동" placeholder="Input Address.">
<button class="search">Search</button>
</div>
<div class="contents-wrap table-wrap">
<!-- table>(thead>tr>th*6)+(tbody>tr>td*6) -->
<table>
<thead>
<tr>
<th>#</th>
<th>ID</th>
<th>Address</th>
<th>Latitude</th>
<th>Longitude</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>1234</td>
<td>신사동</td>
<td>12.34</td>
<td>45.65</td>
<td>강남구 신사동</td>
</tr>
<tr>
<td>2</td>
<td>1234</td>
<td>신사동</td>
<td>12.34</td>
<td>45.65</td>
<td>강남구 신사동</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<footer>
<p>All rights reserved. ©KT</p>
</footer>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js'></script>
<script src="js/contents.js"></script>
</body>
</html>