-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionform.html
More file actions
99 lines (93 loc) · 5.67 KB
/
questionform.html
File metadata and controls
99 lines (93 loc) · 5.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Questions</title>
<link href="question-form.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<header>FAQ Form</header>
<aside>
<div class="faq-imgs">
<img src="Question marks.jpg" alt="Individuals holding question marks">
</div>
<div class="faq-text">
<br><p>Frequently Asked Questions:<br>
<ol>
<li>Where can I find information on legal assistance? <strong>Virginia Lawyer Referral Service (VLRS) </strong>¹ </li>
<li>Where can I find information about children resources for audiology disability? <strong>The Virginia School for the Deaf and the Blind </strong> ² </li>
<li>Where can I fins information about employment? <strong>Jobs Virginia</strong>³</li>
<li>Where can I find information about public transit? <strong>Virginia Department of Rail and Public Transportation</strong>⁴</li>
<li>Where can I apply for food assistance? <strong>Virginia Department of Social Services</strong>⁵</li>
</ol>
</p>
</div>
<div class="faq-imgs">
<img src="https://searchengineland.com/wp-content/seloads/2015/06/question-ask-faq-raise-hand-ss-1920.jpg" alt="Individuals raising their hands">
</div>
</aside>
<section>
<div class="form-body">
<p>Please provide your question in detail below.</p>
<form id="myform">
<label for="firstname">First Name:</label>
<input type="text" id="firstname" name="firstname" required><br>
<label for="lastname">Last Name:</label>
<input type="text" id="lastname" name="lastname" required><br>
<label for="email">Email:</label>
<input type="text" id="email" name="email" required autocomplete="email"><br>
<label for="confirmemail">Confirm Email:</label>
<input type="text" id="confirmemail" name="confirmemail" required autocomplete="email"><br>
<div id="questiondiv">
<label for="question" id="question-label" name="question" required>Question:</label>
<textarea id="question" placeholder="Enter text here..."></textarea>
</div>
<button type="submit" id="submit-btn" class="btn btn-dark">Submit</button>
</form>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="questions.js"></script>
</body>
<nav>
<div class="nav-container">
<div class="nav-item">
<a href="index.html">
<img src="https://www.redfin.com/blog/wp-content/uploads/2023/12/welcome-to-virginia-GettyImages-174906225.webp" alt="Virginia sign">
<div class="overhead-txt">Home</div>
</a>
</div>
<div class="nav-item">
<a href="arlington.html">
<img src="https://res.cloudinary.com/simpleview/image/upload/v1465401290/clients/roanoke/Downtown_Roanoke_Skyline_57425d0b-b199-4cfe-86f8-001d4ee11ef3.jpg" alt="View of Arlington">
<div class="overhead-txt">Arlington, VA</div>
</a>
</div>
<div class="nav-item">
<a href="richmond.html">
<img src="https://i.gocollette.com/img/blog-and-news/blog-posts/2023/11/greenbrierminilaunch_blog-img-1.jpg" alt="View of Richmond">
<div class="overhead-txt">Richmond, VA</div>
</a>
</div>
<div class="nav-item">
<a href="roanoke.html">
<img src="https://res.cloudinary.com/simpleview/image/upload/v1465401290/clients/roanoke/Downtown_Roanoke_Skyline_57425d0b-b199-4cfe-86f8-001d4ee11ef3.jpg" alt="View of Roanoke">
<div class="overhead-txt">Roanoke, VA</div>
</a>
</div>
</div>
</nav>
<footer>
<p>© 2025 Resources:
<a href="https://www.oag.state.va.us/contact-us/frequently-asked-questions-legal-assistance" target="_blank">¹Legal</a>
<a href="https://www.vsdb.k12.va.us/page/audiology-department" target="_blank">²VSDB</a>
<a href="https://www.jobs.virginia.gov/home" target="_blank">³Jobs</a>
<a href="https://drpt.virginia.gov/"target="_blank">⁴DRPT</a>
<a href="https://www.dss.virginia.gov/benefit/food.cgi"target="_blank">⁵DSS</a>
</p>
</footer>
</html>