-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsub2.html
More file actions
107 lines (101 loc) · 5.59 KB
/
sub2.html
File metadata and controls
107 lines (101 loc) · 5.59 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<meta name="title" content="" />
<meta name="robots" content="index,follow" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="copyright" content="" />
<meta property="og:title" content="" />
<meta property="og:type" content="website" />
<meta property="og:description" content="" />
<meta property="og:image" content="logo.png" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/sub.css" />
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/xeicon@2.3.3/xeicon.min.css" />
</head>
<body>
<p id="skipNav"><a href="#content">본문바로가기</a></p>
<div id="wrap">
<header id="header"></header>
<!-- //header -->
<section id="subVisual" class="banner2">
<h2>페이지명 서브2</h2>
</section>
<!-- //subvisual -->
<main id="container" class="page sub2">
<section id="content">
<div class="inner">
<h3>페이지명2</h3>
<div class="sub-tab">
<ul class="tab">
<li class="on" data-id="0"><a href="#">제목1</a></li>
<li data-id="1"><a href="#">제목2</a></li>
<li data-id="2"><a href="#">제목3</a></li>
<li data-id="3"><a href="#">제목4</a></li>
<li data-id="4"><a href="#">제목5</a></li>
</ul>
<div class="con-box">
<article class="box box0 on">
<h3>제목0</h3>
<p>
1. 탭클릭시 페이지 연결 2. 탭클릭시 같은페이지 영역처리 3-1
: data-id="0 ~ 인덱스" box[0] box[1] Lorem ipsum dolor sit
amet consectetur adipisicing elit. Minima expedita autem
harum officia debitis, ullam sapiente itaque nulla beatae
eius molestiae excepturi non repellendus doloremque nam,
temporibus consequatur vero. Voluptatibus?
</p>
</article>
<article class="box box1">
<h3>제목1</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima expedita autem harum officia debitis, ullam sapiente
itaque nulla beatae eius molestiae excepturi non repellendus
doloremque nam, temporibus consequatur vero. Voluptatibus?
</p>
</article>
<article class="box box2">
<h3>제목2</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima expedita autem harum officia debitis, ullam sapiente
itaque nulla beatae eius molestiae excepturi non repellendus
doloremque nam, temporibus consequatur vero. Voluptatibus?
</p>
</article>
<article class="box box3">
<h3>제목3</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima expedita autem harum officia debitis, ullam sapiente
itaque nulla beatae eius molestiae excepturi non repellendus
doloremque nam, temporibus consequatur vero. Voluptatibus?
</p>
</article>
<article class="box box4">
<h3>제목4</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Minima expedita autem harum officia debitis, ullam sapiente
itaque nulla beatae eius molestiae excepturi non repellendus
doloremque nam, temporibus consequatur vero. Voluptatibus?
</p>
</article>
</div>
</div>
</div>
</section>
</main>
<!-- //main -->
<footer id="footer"></footer>
</div>
<script src="js/common.js"></script>
<script type="module" src="js/sub.js"></script>
</body>
</html>