-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqna.html
More file actions
78 lines (72 loc) · 4.29 KB
/
qna.html
File metadata and controls
78 lines (72 loc) · 4.29 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>BARREL SPRINT CHAMPIONSHIP</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="qna.css">
<!--폰트-->
<link href="https://fonts.googleapis.com/css2?family=Cute+Font&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
</head>
<body data-bs-spy="scroll" data-bs-target="#nav-menu">
<!-- 네비게이션 영역 시작//반응형 웹이다. -->
<nav class="navbar navbar-expand-md bg-white navbar-white fixed-top">
<div class="container">
<!--폰트 클래스랑 왼쪽 브랜드 클래스-->
<a class="navbar-brand" href="#">
<img src="image/logo.png" alt="로고" width="650" height="80"> </a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav-menu"
aria-controls="nav-menu" aria-expanded="false" aria-label="메뉴">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="nav-menu">
<ul class="navbar-nav ms-auto my-2">
<li class="nav-item"><a class="nav-link" href="index.html">HOME</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">ABOUT</a></li>
<li class="nav-item"><a class="nav-link" href="guide.html">GUIDE</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">CONTACT</a></li>
<li class="nav-item"><a class="nav-link" href="qna.html">Q&A</a></li>
</ul>
</div>
</div>
</nav>
<!-- 네비게이션 영역 끝 -->
<section class="faq-section">
<h2 class="faq-title">#BARREL SPRINT CHAMPIONSHIP 2025</h2>
<p class="faq-subtitle">자주 묻는 질문들</p>
<hr />
<div class="faq-item">
<div class="faq-number">Q1.</div>
<div class="faq-content">
<p class="question">대회 신청은 팀으로 한번에 하나요 아니면 개인적으로 해서 팀명을 입력하는 방식인가요?</p>
<p class="answer">개인종목은 개개인이 개별로 신청합니다. 단체 종목의 경우 감독이 한번에 신청할 예정입니다.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-number">Q2.</div>
<div class="faq-content">
<p class="question">대회 팀당 인원은 작년처럼 35명인가요?</p>
<p class="answer">2024 배럴 스프린트 챔피언십은 1팀당 구성인원이 최대 25명으로 제한하였고, 2025배럴 스프린트 챔피언십 또한 동일한 인원으로 제한할 예정입니다.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-number">Q3.</div>
<div class="faq-content">
<p class="question">요즘에 외국이름,이중국적 해외선출 분들이 비선출대회에 자주 나옵니다. 이번에도 작년처럼 외국이름인 분들 선출그룹으로 넣어서 비선출끼리 시합할 수 있도록 부탁드립니다.</p>
<p class="answer">전년도와 동일하게 진행될 예정입니다. </p>
</div>
</div>
<div class="faq-item">
<div class="faq-number">Q4.</div>
<div class="faq-content">
<p class="question">작년에 비선출이 아닌줄 알고 S1그룹으로 뛴 친구가 있는데 대한수영 연맹 선수이력 찾아보니까 없어서, 이번에 일반그룹으로 나가려고 합니다. 혹시 작년 S1으로 뛴것이 문제가 될 수 있나요?</p>
<p class="answer">대한수영연맹 선수 이력 또는 철인 3종 선수 이력으로 검색이 안될 시 가능합니다. 다만, 항의 문의 및 추가 선수 이력 확인이 들어올 시 더 상세하게 이력 요청드릴 수 있는 점을 찾고 부탁드리겠습니다. </p>
</div>
</div>
</section>
</body>
</html>