-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommercial-transaction.html
143 lines (138 loc) · 5.81 KB
/
commercial-transaction.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="robots" content="noindex , nofollow" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="img/cropped-i0-1.webp">
<link rel="apple-touch-icon" href="img/cropped-i0-1.webp">
<link rel="icon" type="image/png" href="img/cropped-i0-1.webp">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="TikChoco">
<title>TikChoco Online Dashboard</title>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<!-- MDB -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.2.0/mdb.min.css"
rel="stylesheet"
/>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.2.0/mdb.min.js"
></script>
<link rel="stylesheet" href="css/admin.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.js" integrity="sha512-d9xgZrVZpmmQlfonhQUvTR7lMPtO7NkZMkA0ABN3PHCbKA5nqylQ/yWlFAyY6hYgdF1Qh6nYiuADWwKB4C2WSw=="
crossorigin="anonymous"></script>
</head>
<body>
<header>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img
src="img/cropped-i0-1.webp"
height="30"
alt=""
loading="lazy"
/>
TikChoco Online
</a>
<button
class="navbar-toggler"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#navbarExample01"
aria-controls="navbarExample01"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarExample01">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item active">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
</ul>
</div></div>
</nav>
<!-- Navbar -->
<!-- Navbar --></header>
<div class="container">
<div class="container my-5 p-5 shadow-3">
<!--Section: Content 3-->
<section>
<div class="row">
<h3 class="mb-3">TikChocoOnline</h3>
<p class="mb-4">
<section class=" p-4 text-center mb-4">
<table class="table mb-0">
<tbody>
<tr>
<th scope="row">提供するサービスの名称</th>
<td>TikChocoOnline</td>
</tr>
<tr>
<th scope="row">販売事業者名</th>
<td>WingStar合同会社</td>
</tr>
<tr>
<th scope="row">所在地</th>
<td>〒323-0820<br>
栃木県小山市西城南2-17-1ユーミートレゾール203</td>
</tr>
<tr>
<th scope="row">代表者名</th>
<td>中村 大地</td>
</tr>
<tr>
<th scope="row">販売価格</th>
<td>商品等の購入ページに表示されます。</td>
</tr>
<tr>
<th scope="row">サービス提供方法</th>
<td>決済完了後、インターネット通信により直ちに提供されます。</td>
</tr>
<tr>
<th scope="row">返品について</th>
<td>商品等の性質上、返品はお受けできません。</td>
</tr>
<tr>
<th scope="row">注意事項</th>
<td>特定商取引法規定のクーリング・オフが適用されるサービスではありません。 </td>
</tr>
</tbody>
</table>
</section>
</p>
</div>
</section>
<!--Section: Content 3-->
</div>
</div>
</div>
<footer id="footer" class=" bg-light text-lg-start">
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© Copyright:
<a class="text-dark" href="https://tc.tik-choco.com/"> TikChoco </a>All Rights Reserved.
</div>
<!-- Copyright -->
</footer>
</body>
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<script type="text/javascript" src="js/footer.js"></script>
<script type="text/javascript" src="js/admin.js"></script>
</html>