-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="ask.js"></script>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ask | Built with JQuery</title>
</head>
<body>
<div class="wrapper">
<h1>Ask — Demo</h1>
<p>A basic, no frills FAQ built with jquery. Check out the tutorial <a href="http://jvkrakowski.com/coding/2021/05/04/build-accordion-faq.html">here</a>.</p>
<input class="open" type="button" value="Open All">
<dl class="questions">
<dt>Question 1</dt>
<dd>Answer</dd>
<dt>Question 2</dt>
<dd>Answer.</dd>
</dl>
</div>
</body>
</html>