-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 1.7 KB
/
index.html
File metadata and controls
59 lines (53 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="icon" type="image/x-icon" href="/resource/icon.ico" /> -->
<script src="https://cdn.tailwindcss.com"></script>
<title>체크드 - 똑똑한 독서 습관 만들어 주는 앱</title>
</head>
<body>
<div class="sm:container sm:mx-auto flex flex-row justify-between p-2">
<a href="/" class="flex flex-row">
<img src="./resource/logo.png" class="w-12 h-12" />
<p class="text-gray-900 font-bold self-center ml-2">체크드</p>
</a>
<div class="flex self-center">
<a
href=""
class="flex mr-2 p-2 hover:bg-gray-100 text-gray-900 text-sm rounded-lg"
>서비스 소개</a
>
<a
href=""
class="flex mr-2 p-2 hover:bg-gray-100 text-gray-900 text-sm rounded-lg"
>요금제</a
>
<a
href=""
class="flex p-2 bg-green-500 hover:bg-green-700 text-gray-100 text-sm rounded-lg"
>다운로드</a
>
</div>
</div>
<br />
<div class="sm:container sm:mx-auto p-2">
<div class="mx-auto bg-green-200 rounded-lg p-4">
<br />
<h1 class="text-6xl text-gray-900 text-green-900 font-bold">
똑똑한<br />독서 습관을<br />만들어 주는 앱
</h1>
<br />
<p class="text-green-700">지금 바로 시작하세요!</p>
</div>
<br />
<div class="p-4">
<h1 class="text-xl font-bold">서비스 소개</h1>
</div>
<hr />
<br />
<a href="">개인정보처리방침</a>
</div>
</body>
</html>