-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.85 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
<!DOCTYPE html>
<html lang="ko">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>쿠폰 모음</title>
<link rel="stylesheet" href="style.css">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<header>
<h1>엄마를 위한 쿠폰 모음집</h1>
<nav>
<ul>
<li><a href="#use">사용</a></li>
<li><a href="#howToUse">쿠폰 사용법</a></li>
</ul>
</nav>
</header>
<main>
<section id="use">
<h2>쿠폰 사용</h2>
<div class="coupon-input">
<input type="text" id="couponCode" placeholder="쿠폰 코드를 입력하세요">
<button id="submitCoupon">쿠폰 사용하기</button>
</div>
<div id="result" class="result-message"></div>
</section>
<section id="howToUse">
<h2>쿠폰 사용법</h2>
<p>쿠폰을 사용하는 방법을 알려드립니다.</p>
<p> 1. 먼저 오프라인 쿠폰 뒷면의 쿠폰 번호를 확인합니다.</p>
<p> 2. 쿠폰 번호를 입력하고 쿠폰 사용 버튼을 누릅니다.</p>
<p> 3. 쿠폰 사용 버튼을 누르면 쿠폰 사용 완료 메시지가 나타납니다.</p>
<p> 4. 이제 곧 쿠폰의 효과가 지속됩니다!</p>
</section>
</main>
<footer>
<p>© 2024 juyong0129</p>
</footer>
<script src="script.js"></script>
</body>
</html>