forked from codingburgas/DemoProj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 999 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Accordion</title>
</head>
<body>
<div class="accordion">
<h2 class="accordion-title">FAQ</h2>
<div class="content-container">
<div class="question">How old are you?</div>
<div class="answer">I am 58 years old.</div>
</div>
<div class="content-container">
<div class="question">How much have you played?</div>
<div class="answer">I've been playing for 48 years.</div>
</div>
<div class="content-container">
<div class="question">Do you play other instruments?</div>
<div class="answer">No, I can't.</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>