Skip to content

Commit e57a714

Browse files
authored
Add files via upload
1 parent fdc1f63 commit e57a714

22 files changed

Lines changed: 6993 additions & 0 deletions

EXZ_HOMPAGE/about.html

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- 문자 인코딩: UTF-8 사용 -->
5+
<meta charset="UTF-8">
6+
7+
<!-- 반응형 디자인 -->
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
10+
<!-- 페이지 제목 -->
11+
<title>About Us - EXceed Zero</title>
12+
13+
<!-- 파비콘 설정 -->
14+
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
15+
16+
<!-- CSS 파일 로드 -->
17+
<link rel="stylesheet" href="css/reset.css">
18+
<link rel="stylesheet" href="css/variables.css">
19+
<link rel="stylesheet" href="css/style.css">
20+
<link rel="stylesheet" href="css/responsive.css">
21+
</head>
22+
<body>
23+
24+
<!-- 네비게이션 바 -->
25+
<nav class="navbar">
26+
<div class="container navbar-container">
27+
<!-- 로고 -->
28+
<div class="navbar-logo">
29+
<a href="index.html">
30+
<img src="images/logo.png" alt="EXZ">
31+
</a>
32+
</div>
33+
34+
<!-- 메뉴 -->
35+
<ul class="navbar-menu">
36+
<li><a href="index.html#about">About</a></li>
37+
<li><a href="index.html#services">Services</a></li>
38+
39+
<!-- 언어 선택 드롭다운 -->
40+
<li class="navbar-dropdown">
41+
<button class="navbar-dropdown-button">
42+
🌍 Language
43+
</button>
44+
<div class="navbar-dropdown-menu">
45+
<a href="index.html" class="active">English</a>
46+
<a href="korea/index.html">Korean</a>
47+
</div>
48+
</li>
49+
</ul>
50+
</div>
51+
</nav>
52+
53+
<!-- 메인 콘텐츠 -->
54+
<main class="legal-page">
55+
<div class="container">
56+
<!-- 페이지 제목 -->
57+
<h1>About Us</h1>
58+
59+
<!-- 시행일 -->
60+
<p class="last-updated"><strong>Effective Date: October 1, 2025</strong></p>
61+
62+
<hr>
63+
64+
<!-- Section 1: About EXceed Zero -->
65+
<section class="legal-section">
66+
<h2>About EXceed Zero</h2>
67+
68+
<p>EXceed Zero provides information access services by sharing AI utilization methodologies and recording AI-generated results.</p>
69+
70+
<h3>Service Core:</h3>
71+
<ul>
72+
<li>Demonstration of AI prompt creation methodology</li>
73+
<li>Documentation of AI-based information collection process</li>
74+
<li>Sharing of research process via Google Docs</li>
75+
</ul>
76+
77+
<h3>Research Example:</h3>
78+
<ul>
79+
<li>Usage of information gathering on US tariff policies on China as an example</li>
80+
<li>Documentation of AI prompt improvement process</li>
81+
<li>Weekly information provision</li>
82+
</ul>
83+
</section>
84+
85+
<!-- Section 2: Contact Information -->
86+
<section class="legal-section">
87+
<h2>Contact Information</h2>
88+
89+
<p><strong>Company Name</strong>: EXceed Zero</p>
90+
<p><strong>Representative</strong>: Tae-hu Kim</p>
91+
<p><strong>Email</strong>: exceedzero@exceedzero.com</p>
92+
93+
<p><strong>Business Registration Number</strong>: No paid sales</p>
94+
<p><strong>Mail-Order Business Registration Number</strong>: No paid sales</p>
95+
<p><strong>Main Phone Number</strong>: No paid sales</p>
96+
<p><strong>Business Address</strong>: No paid sales</p>
97+
</section>
98+
99+
<!-- Section 3: Service Usage Guide -->
100+
<section class="legal-section">
101+
<h2>Service Usage Guide</h2>
102+
103+
<p>For detailed information about this service, please refer to the following documents:</p>
104+
105+
<ul>
106+
<li><strong>Terms of Use</strong>: Service definition, subscription terms, user obligations, etc.</li>
107+
<li><strong>Disclaimer</strong>: Service limitations, scope of liability, etc.</li>
108+
<li><strong>Privacy Policy</strong>: Matters regarding the collection and processing of personal information</li>
109+
</ul>
110+
111+
<p><strong>© 2025 EXceed Zero. All rights reserved.</strong></p>
112+
</section>
113+
</div>
114+
</main>
115+
116+
<!-- 푸터 -->
117+
<footer class="footer">
118+
<div class="container">
119+
<!-- 링크 목록 -->
120+
<div class="footer-links">
121+
<a href="https://exceedzero.notion.site/Language-Selection-29f84ddcec3c804190a5def06bc29395/" target="_blank">📚 Notion</a>
122+
<a href="about.html">About Us</a>
123+
<a href="terms.html">Terms of Service</a>
124+
<a href="disclaimer.html">Disclaimer</a>
125+
<a href="privacy.html">Privacy Policy</a>
126+
</div>
127+
128+
<!-- 회사 정보 -->
129+
<div class="footer-info">
130+
<p>Company: EXceed Zero | Representative: Taehu Kim</p>
131+
<p>✉️ Email: exceedzero@exceedzero.com</p>
132+
<p>Business Registration Number: No paid sales | Mail-order Sale Number: No paid sales</p>
133+
<p>Representative Phone Number: No paid sales | Business Address: No paid sales</p>
134+
</div>
135+
136+
<!-- 저작권 -->
137+
<div class="footer-copyright">
138+
<p>© 2025 EXceedZero. All rights reserved.</p>
139+
</div>
140+
</div>
141+
</footer>
142+
143+
</body>
144+
</html>

EXZ_HOMPAGE/css/reset.css

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
========================================
3+
reset.css - CSS 초기화 파일
4+
========================================
5+
6+
목적: 모든 브라우저에서 일관된 스타일을 적용하기 위해
7+
기본 스타일을 초기화합니다.
8+
9+
설명: 브라우저마다 기본 스타일(margin, padding 등)이 달라서
10+
디자인이 달라 보일 수 있습니다. 이를 방지하기 위해
11+
모든 요소의 기본 스타일을 0으로 초기화합니다.
12+
========================================
13+
*/
14+
15+
/*
16+
모든 요소(*), 가상요소(::before, ::after)의
17+
여백과 테두리를 초기화합니다
18+
*/
19+
*, *::before, *::after {
20+
margin: 0; /* 바깥 여백 제거 */
21+
padding: 0; /* 안쪽 여백 제거 */
22+
box-sizing: border-box; /* 크기 계산 방식을 border-box로 통일 */
23+
}
24+
25+
/*
26+
HTML 요소의 기본 설정
27+
- 스크롤을 부드럽게 만듭니다
28+
*/
29+
html {
30+
scroll-behavior: smooth; /* 앵커 링크 클릭 시 부드럽게 스크롤 */
31+
}
32+
33+
/*
34+
Body 요소의 기본 설정
35+
- 최소 높이를 화면 전체로 설정
36+
- 텍스트 렌더링 최적화
37+
*/
38+
body {
39+
min-height: 100vh; /* 최소 높이를 화면(viewport) 높이의 100%로 */
40+
line-height: 1.6; /* 줄 간격을 1.6배로 (가독성 향상) */
41+
-webkit-font-smoothing: antialiased; /* Mac에서 폰트를 부드럽게 렌더링 */
42+
-moz-osx-font-smoothing: grayscale; /* Firefox Mac에서 폰트를 부드럽게 렌더링 */
43+
}
44+
45+
/*
46+
이미지, 비디오 등의 미디어 요소 설정
47+
- 부모 요소를 넘어가지 않도록 제한
48+
*/
49+
img, picture, video, canvas, svg {
50+
display: block; /* 블록 요소로 표시 (아래 여백 제거) */
51+
max-width: 100%; /* 부모 요소를 넘지 않도록 최대 너비 제한 */
52+
height: auto; /* 비율을 유지하면서 높이 자동 조절 */
53+
}
54+
55+
/*
56+
입력 요소(input, button 등)의 폰트 상속
57+
- 기본적으로 입력 요소는 시스템 폰트를 사용하는데,
58+
이를 body에서 지정한 폰트로 통일합니다
59+
*/
60+
input, button, textarea, select {
61+
font: inherit; /* 부모 요소의 폰트 설정을 상속 */
62+
}
63+
64+
/*
65+
문단 요소의 고아/과부 방지
66+
- 텍스트가 여러 줄일 때 페이지/컬럼 끝에서
67+
한 줄만 떨어져 나가는 것을 방지합니다
68+
*/
69+
p, h1, h2, h3, h4, h5, h6 {
70+
overflow-wrap: break-word; /* 긴 단어는 줄바꿈 허용 */
71+
}
72+
73+
/*
74+
리스트(ul, ol)의 기본 마커(점, 숫자) 제거
75+
*/
76+
ul, ol {
77+
list-style: none; /* 리스트 마커 제거 */
78+
}
79+
80+
/*
81+
링크(a) 요소의 기본 스타일 제거
82+
*/
83+
a {
84+
text-decoration: none; /* 밑줄 제거 */
85+
color: inherit; /* 부모 요소의 색상 상속 */
86+
}
87+
88+
/*
89+
버튼의 기본 스타일 제거
90+
*/
91+
button {
92+
background: none; /* 배경 제거 */
93+
border: none; /* 테두리 제거 */
94+
cursor: pointer; /* 마우스 커서를 손가락 모양으로 */
95+
font: inherit; /* 폰트 상속 */
96+
}

0 commit comments

Comments
 (0)