-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
144 lines (119 loc) · 5.86 KB
/
about.html
File metadata and controls
144 lines (119 loc) · 5.86 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 문자 인코딩: UTF-8 사용 -->
<meta charset="UTF-8">
<!-- 반응형 디자인 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 페이지 제목 -->
<title>About Us - EXceed Zero</title>
<!-- 파비콘 설정 -->
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<!-- CSS 파일 로드 -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/variables.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<!-- 네비게이션 바 -->
<nav class="navbar">
<div class="container navbar-container">
<!-- 로고 -->
<div class="navbar-logo">
<a href="index.html">
<img src="images/logo.png" alt="EXZ">
</a>
</div>
<!-- 메뉴 -->
<ul class="navbar-menu">
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#services">Services</a></li>
<!-- 언어 선택 드롭다운 -->
<li class="navbar-dropdown">
<button class="navbar-dropdown-button">
🌍 Language
</button>
<div class="navbar-dropdown-menu">
<a href="index.html" class="active">English</a>
<a href="korea/index.html">Korean</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- 메인 콘텐츠 -->
<main class="legal-page">
<div class="container">
<!-- 페이지 제목 -->
<h1>About Us</h1>
<!-- 시행일 -->
<p class="last-updated"><strong>Effective Date: October 1, 2025</strong></p>
<hr>
<!-- Section 1: About EXceed Zero -->
<section class="legal-section">
<h2>About EXceed Zero</h2>
<p>EXceedZero provides AI prompt engineering technical support and consulting.</p>
<h3>Service Core:</h3>
<ul>
<li>The Trinity Framework (Claude + Gemini + Python)</li>
<li>AI prompt engineering methodology training</li>
<li>Support for building universal data collection and filtering systems</li>
</ul>
<h3>Research Example:</h3>
<ul>
<li>Usage of U.S.-China semiconductor tariff policies as a case study</li>
<li>Documentation and sharing of 30-week planning and execution process</li>
<li>Conducting demand research in 6 countries (USA, Korea, Canada, Netherlands, Singapore, Taiwan)</li>
</ul>
</section>
<!-- Section 2: Contact Information -->
<section class="legal-section">
<h2>Contact Information</h2>
<p><strong>Company Name</strong>: EXceed Zero</p>
<p><strong>Representative</strong>: Tae-hu Kim</p>
<p><strong>Email</strong>: exceedzero@exceedzero.com</p>
<p><strong>Business Registration Number</strong>: 860-01-03895</p>
<p><strong>Mail-Order Business Registration Number</strong>: No paid sales</p>
<p><strong>Representative Phone Number</strong>: 0504-4645-5360</p>
<p><strong>Business Address</strong>: 4F, 401-J797, 79 Gimpohangang 9-ro, Gimpo-si, Gyeonggi-do, Republic of Korea</p>
</section>
<!-- Section 3: Service Usage Guide -->
<section class="legal-section">
<h2>Service Usage Guide</h2>
<p>For detailed information about this service, please refer to the following documents:</p>
<ul>
<li><strong>Terms of Use</strong>: Service definition, usage terms, user obligations, etc.</li>
<li><strong>Disclaimer</strong>: Service limitations, scope of liability, etc.</li>
<li><strong>Privacy Policy</strong>: Matters regarding the collection and processing of personal information</li>
</ul>
<p><strong>© 2025 EXceed Zero. All rights reserved.</strong></p>
</section>
</div>
</main>
<!-- 푸터 -->
<footer class="footer">
<div class="container">
<!-- 링크 목록 -->
<div class="footer-links">
<a href="https://exceedzero.notion.site/Language-Selection-29f84ddcec3c804190a5def06bc29395/" target="_blank">📚 Notion</a>
<a href="about.html">About Us</a>
<a href="terms.html">Terms of Service</a>
<a href="disclaimer.html">Disclaimer</a>
<a href="privacy.html">Privacy Policy</a>
</div>
<!-- 회사 정보 -->
<div class="footer-info">
<p>Company: EXceed Zero | Representative: Taehu Kim</p>
<p>✉️ Email: exceedzero@exceedzero.com</p>
<p>Business Registration Number: 860-01-03895 | Mail-order Sale Number: No paid sales</p>
<p>Representative Phone Number: 0504-4645-5360 | Business Address: 4F, 401-J797, 79 Gimpohangang 9-ro, Gimpo-si, Gyeonggi-do, Republic of Korea</p>
</div>
<!-- 저작권 -->
<div class="footer-copyright">
<p>© 2025 EXceedZero. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>