generated from Autumn-Coding/Devscript-website
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
52 lines (43 loc) · 1.82 KB
/
faq.html
File metadata and controls
52 lines (43 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
<title>DevScript - FAQ</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous"> <link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&display=swap" rel="stylesheet"></head>
<body>
<div id="header">
<h1 id="DevScript">DevScript</h1>
<nav>
<a href="/index.html">Home</a>
<a href="/about.html">About Us</a>
<a href="/faq.html">FAQ</a>
<a href="/contact.html">Contact</a>
<a href="/credit.html">Credit</a>
</nav>
</div>
<div class="page">
<div class="pageHeader"><h1>Frequently Asked Questions</h1></div>
<div class="contentBoxLarge">
<div class="contentHolder">
<form class="row row-cols-lg-auto g-3 align-items-center">
<div class="form-group form-floating">
<input type="search" class="form-control" id="searchFAQ" placeholder="text">
<label for="searchFAQ">Find a Question:</label>
</div>
<button type="submit" class="btn btn-primary" onclick="SearchingFAQ()">Submit</button>
</form>
<button class="question">What is DevScript?</button>
<div class="answer">
<p>DevScript is a guild of programmers created for Local Hack Day. You can read more on our <a href="/about.html">About Us</a> page!</p>
</div>
</div>
</div>
<div id="footer"><p>Copyright ©2026, Kate Yoshida</p></div>
</div>
<script src="script.js"></script>
</body>
</html>