-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
31 lines (27 loc) · 1.27 KB
/
questions.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
<!DOCTYPE html>
<html>
<head>
<title>Stroke Recovery 101</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="stroke.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Volkhov" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Stroke Recovery 101</h1>
<hr>
<p>This site will provide information and memories regarding your stroke.</p>
<div class="content">
<form id="survey-form">
<label>What questions do you have? <br>
<textarea rows="4" cols="50" name="comment" form="usrform"></textarea>
</label> <br>
<input type="submit" id="submit">
</form><br><br>
</div>
<a href="first-stroke.html" aria-label="Button that directs back to home page"><button type="button" class="btn btn-secondary">Home</button></a>
<a href="answers.html" aria-label="Button directs to page containing answers to questions"><button type="button" class="btn btn-secondary">Previous Questions/Answers</button></a>
</div>
</body>
</html>