-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·485 lines (451 loc) · 19.8 KB
/
index.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<!doctype html>
<html class="fixed">
<head>
<!-- Basic -->
<meta charset="UTF-8">
<!-- Primary Meta Tags -->
<title>Web Toolz :: 다양한 웹서비스를 제공합니다.</title>
<meta name="title" content="Web Toolz :: 다양한 웹서비스를 제공합니다.">
<meta name="description" content="To Do 리스트, 사칙연산계산기, 대출이자계산기, 글자 수 세기, Color Picker, 마크다운 에디터, D-day 계산기, 스톱워치 서비스 등을 제공합니다.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="http://webtoolz.link/">
<meta property="og:title" content="Web Toolz :: 다양한 웹서비스를 제공합니다.">
<meta property="og:description" content="To Do 리스트, 사칙연산계산기, 대출이자계산기, 글자 수 세기, Color Picker, 마크다운 에디터, D-day 계산기, 스톱워치 서비스 등을 제공합니다.">
<meta property="og:image" content="https://s3.ap-northeast-2.amazonaws.com/webtoolz.link/assets/images/web+toolz.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="http://webtoolz.link/">
<meta property="twitter:title" content="Web Toolz :: 다양한 웹서비스를 제공합니다.">
<meta property="twitter:description" content="To Do 리스트, 사칙연산계산기, 대출이자계산기, 글자 수 세기, Color Picker, 마크다운 에디터, D-day 계산기, 스톱워치 서비스 등을 제공합니다.">
<meta property="twitter:image" content="https://s3.ap-northeast-2.amazonaws.com/webtoolz.link/assets/images/web+toolz.jpg">
<meta name="keywords" content="web tool, web tools, simple calculator, to do list, color picker, markdown editor, dday, text counter, notepad" />
<link rel="icon" href="assets/images/favicon.ico">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="assets/vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="assets/vendor/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="assets/vendor/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="assets/vendor/bootstrap-datepicker/css/bootstrap-datepicker3.css" />
<!-- Specific Page Vendor CSS -->
<link rel="stylesheet" href="assets/vendor/jquery-ui/jquery-ui.css" />
<link rel="stylesheet" href="assets/vendor/jquery-ui/jquery-ui.theme.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="assets/stylesheets/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme-custom.css">
<!-- Head Libs -->
<script src="assets/vendor/modernizr/modernizr.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6567981859216815" crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4KJQ9ED5RL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4KJQ9ED5RL');
</script>
</head>
<body>
<section class="body">
<!-- start: header -->
<header class="header">
<div class="logo-container">
<h1 class="logo">
Web Toolz
</h1>
<div class="visible-xs toggle-sidebar-left" data-toggle-class="sidebar-left-opened" data-target="html" data-fire-event="sidebar-left-opened">
<i class="fa fa-bars" aria-label="Toggle sidebar"></i>
</div>
</div>
<!-- start: header buttons -->
<div class="header-right">
<ul class="notifications" style="margin:8px 0px;">
<li>
<div style="margin-top:5px; display:flex;flex-direction: row-reverse;">
<input type="checkbox" id="chageTheme" style="margin: 4px 20px 4px 10px">
<span>Dark Mode</span></div>
</li>
<li>
<a id="favorite" href="javascript:;" class="notification-icon">
<i class="fa fa-star"></i>
</a>
</li>
<li>
<a id="share" href="javascript:;" class="notification-icon">
<i class="fa fa-share-alt"></i>
</a>
</li>
<li>
<a id="share" href="mailto:goodfriend.3777@gmail.com?subject=Web Toolz에게 바라는 점" class="notification-icon">
<i class="fa fa fa-exclamation"></i>
</a>
</li>
</ul>
<span class="separator"></span>
<div id="userbox" class="userbox">
<a href="#" data-toggle="dropdown" aria-expanded="false">
<div class="profile-info">
<span class="name" id="setLanguage">KR</span>
</div>
<i class="fa custom-caret"></i>
</a>
<div class="dropdown-menu">
<ul class="list-unstyled">
<li class="divider"></li>
<li>
<a role="menuitem" id="koBtn" data-lang="ko" tabindex="-1" href="javascript:void();">KR</a>
</li>
<li>
<a role="menuitem" id="enBtn" data-lang="en" tabindex="-1" href="javascript:void();">EN</a>
</li>
<li>
<a role="menuitem" id="jpBtn" data-lang="jp" tabindex="-1" href="javascript:void();">JP</a>
</li>
<li>
<a role="menuitem" id="cnBtn" data-lang="cn" tabindex="-1" href="javascript:void();">CN</a>
</li>
</ul>
</div>
</div>
</div>
<!-- end: header buttons -->
</header>
<!-- end: header -->
<div class="inner-wrapper">
<!-- start: sidebar -->
<aside id="sidebar-left" class="sidebar-left">
<div class="sidebar-header">
<div class="sidebar-title">
<!-- search input -->
<input type="text" id="menuSearch" class="form-control search-input" placeholder="search menu">
</div>
<div class="sidebar-toggle hidden-xs" data-toggle-class="sidebar-left-collapsed" data-target="html" data-fire-event="sidebar-left-toggle">
<i class="fa fa-bars" aria-label="Toggle sidebar"></i>
</div>
</div>
<div class="nano">
<div class="nano-content">
<nav id="menu" class="nav-main" role="navigation">
<ul class="nav nav-main">
<li class="nav-active">
<a href="index.html">
<i class="fa fa-home" aria-hidden="true"></i>
<span>home</span>
</a>
</li>
<li>
<a href="to-do-list.html">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span data-detect="toDoList">To Do 리스트</span>
</a>
</li>
<li>
<a href="shopping-list.html">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span data-detect="shoppingList">쇼핑 리스트</span>
</a>
</li>
<li>
<a href="calc.html">
<i class="fa fa-calculator" aria-hidden="true"></i>
<span data-detect="simpleCalc">사칙연산 계산기</span>
</a>
</li>
<li>
<a href="calc2.html">
<i class="fa fa-calculator" aria-hidden="true"></i>
<span data-detect="loanInterestCalc">대출이자 계산기</span>
</a>
</li>
<li>
<a href="text-count.html">
<i class="fa fa-align-left" aria-hidden="true"></i>
<span data-detect="countText">글자 수 세기</span>
</a>
</li>
<li>
<a href="color-picker.html">
<i class="fa fa-eyedropper" aria-hidden="true"></i>
<span data-detect="colorPicker">Color Picker</span>
</a>
</li>
<li>
<a href="markdown-editor.html">
<i class="fa fa-edit" aria-hidden="true"></i>
<span data-detect="markdownEditor">Markdown Editor</span>
</a>
</li>
<li>
<a href="d-day.html">
<i class="fa fa-calendar" aria-hidden="true"></i>
<span data-detect="dDayCalc">D-day 계산기</span>
</a>
</li>
<li>
<a href="stop-watch.html">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<span data-detect="stopWatch">스톱 워치</span>
</a>
</li>
<li>
<a href="memo.html">
<i class="fa fa-text-width" aria-hidden="true"></i>
<span data-detect="memo">메모장</span>
</a>
</li>
<li>
<a href="lotto.html">
<i class="fa fa-spinner" aria-hidden="true"></i>
<span data-detect="lotto">로또 번호 생성기</span>
</a>
</li>
<li>
<a href="regex.html">
<i class="fa fa-asterisk" aria-hidden="true"></i>
<span data-detect="regex">정규식 테스트</span>
</a>
</li>
<li>
<a href="diary.html">
<i class="fa fa-book" aria-hidden="true"></i>
<span data-detect="diary">다이어리</span>
</a>
</li>
<li>
<a href="json-formatter.html">
<i class="fa fa-code" aria-hidden="true"></i>
<span data-detect="jsonFomatter">JSON 포맷터</span>
</a>
</li>
<li>
<a href="counter.html">
<i class="fa fa-unsorted" aria-hidden="true"></i>
<span data-detect="counter">계수기</span>
</a>
</li>
<li>
<a href="change-case.html">
<i class="fa fa-code" aria-hidden="true"></i>
<span >문자 케이스 변경</span>
</a>
</li>
<li >
<a href="tree-memo.html">
<i class="fa fa-folder" aria-hidden="true"></i>
<span >트리메모</span>
</a>
</li>
<li>
<a href="change-simple-regex.html">
<i class="fa fa-folder" aria-hidden="true"></i>
<span>간단한 정규식</span>
</a>
</li>
</ul>
</nav>
</div>
<script>
// Maintain Scroll Position
if (typeof localStorage !== 'undefined') {
if (localStorage.getItem('sidebar-left-position') !== null) {
var initialPosition = localStorage.getItem('sidebar-left-position'),
sidebarLeft = document.querySelector('#sidebar-left .nano-content');
sidebarLeft.scrollTop = initialPosition;
}
}
</script>
</div>
</aside>
<!-- end: sidebar -->
<section role="main" class="content-body">
<header class="page-header">
<h2>home</h2>
</header>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="toDoList">To Do 리스트</h1>
<p class="lead" data-detect="toDoList_explain">깔끔한 디자인의 To Do 리스트 입니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="to-do-list.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="shoppingList">쇼핑 리스트</h1>
<p class="lead" data-detect="shoppingList_explain">깔끔한 디자인의 To Do 리스트 입니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="shopping-list.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="simpleCalc">사칙연산 계산기</h1>
<p class="lead" data-detect="simpleCalc_explain">깔끔한 디자인의 사칙연산 계산기입니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="calc.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="loanInterestCalc">대출이자 계산기</h1>
<p class="lead" data-detect="loanInterestCalc_explain">깔끔한 디자인의 대출 이자 계산기입니다. 원리금균등상환 계산을 빠르게 할 수 있습니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="calc2.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="countText">글자 수 세기</h1>
<p class="lead" data-detect="countText_explain">텍스트 글자수를 세어 줍니다.(공백 포함/미포함)</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="text-count.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="colorPicker">Color Picker</h1>
<p class="lead" data-detect="colorPicker_explain">색을 선택하면 코드값(RGBA)으로 변환해 줍니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="color-picker.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="markdownEditor">Markdown Editor</h1>
<p class="lead" data-detect="markdownEditor_explain">마크다운 에디터로 문장을 편집해 보세요.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="markdown-editor.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="dDayCalc">D-day 계산기</h1>
<p class="lead" data-detect="dDayCalc_explain">D-day 날짜를 계산해 보세요.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="d-day.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="stopWatch">스톱워치</h1>
<p class="lead" data-detect="stopWatch_explain">깔끔한 디자인의 스톱워치 입니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="stop-watch.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="memo">메모장</h1>
<p class="lead" data-detect="memo_explain">간단하게 메모하고 내용을 복사 붙여넣기 하세요.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="memo.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="lotto">로또 번호 생성기</h1>
<p class="lead" data-detect="lotto_explain">1~45개 숫자에서 6개의 로또 번호를 뽑아줍니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="lotto.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="regex">정규식 테스트</h1>
<p class="lead" data-detect="regex_explain">정규식을 테스트해보세요.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="regex.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="diary">일기</h1>
<p class="lead" data-detect="diary_explain">깔끔한 디자인의 심플 다이어리 입니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="diary.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="jsonFomatter">JSON 포맷터</h1>
<p class="lead" data-detect="jsonFomatter_explain">JSON을 포맷에 맞게 수정해 줍니다.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="json-formatter.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1 data-detect="counter">카운터</h1>
<p class="lead" data-detect="counter_explain">개수를 세어 보세요.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="counter.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1>문자 케이스 변경</h1>
<p class="lead" >문자열 캐릭터를 케이스별로 변경해 보세요.</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="change-case.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1>트리메모</h1>
<p class="lead" >트리형태로 메모해보세요(tree.js 테스트)</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="tree-memo.html" role="button">바로가기 »</a>
</div>
</section>
</div>
<div class="panel-body">
<section class="panel">
<div class="bg-light p-5 rounded">
<h1>간단한 정규식</h1>
<p class="lead" >간단한 정규식</p>
<a class="btn btn-lg btn-primary" data-detect="goPage" href="change-simple-regex.html" role="button">바로가기 »</a>
</div>
</section>
</div>
</section>
</div>
</section>
<!-- Vendor -->
<script src="assets/vendor/jquery/jquery.js"></script>
<script src="assets/vendor/jquery-browser-mobile/jquery.browser.mobile.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.js"></script>
<script src="assets/vendor/nanoscroller/nanoscroller.js"></script>
<!-- Specific Page Vendor -->
<script src="assets/vendor/jquery-ui/jquery-ui.js"></script>
<script src="assets/vendor/jqueryui-touch-punch/jqueryui-touch-punch.js"></script>
<script src="assets/vendor/bootstrap-colorpicker/js/bootstrap-colorpicker.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="assets/javascripts/theme.js"></script>
<!-- Theme Custom -->
<script src="assets/javascripts/theme.custom.js?v=20230127"></script>
<!-- Theme Initialization Files -->
<script src="assets/javascripts/theme.init.js"></script>
</body>
</html>