Dashboard Temp Share Shortlinks Frames API

HTMLify

index_socials.html
Views: 360 | Author: cody
 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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Accordion FAQ</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div class="faq-container">
    <details>
      <summary>
        <span class="faq-title">
          How long does the course take?
        </span>
        <!-- svg icon -->
      </summary>
      <div class="faq-content">
        The video content takes more than 4.5 hours.
      </div>
    </details>
    <details>
      <summary>
        <span class="faq-title">
          Who teaches courses on Atheros Learning?
        </span>
        <!-- svg icon -->
      </summary>
      <div class="faq-content">
        The authors of the courses are mostly atheros
        <!-- more text -->
      </div>
    </details>
  </div>
  <script src="script.js"></script>
</body>
</html>