-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1.02 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
34
<!DOCTYPE html>
<html>
<head>
<title>QuickSurvey</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body id="home">
<nav class="navbar">
<div class = 'heading'>
<h2 id = "logo">QuickSurvey</h2>
</div>
<ul class="nav-menu">
<li><a href="index.html" >How to</a></li>
<li><a href="create.html">Create</a></li>
<li><a href="pastsurveys.html">Past Surveys</a></li>
</ul>
</nav>
<div id="listcontainer">
<span style="color: white;font-size: 100px;">Instructions</span>
<ol>
<li >Click on the create button</li>
<li>Create your survey</li>
<li>Click 'Create Survey' button</li>
<li>Send out link or show barcode to surveyees</li>
<li>Look for results in the 'Created Surveys'</li>
</ol>
</div>
</body>
</html>