-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (85 loc) · 3.1 KB
/
index.html
File metadata and controls
92 lines (85 loc) · 3.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/index.css" rel="stylesheet">
<title>Testify</title>
</head>
<body>
<section class = 'mainheader'>
<div class="navarea">
<div class="semicircle">
<div></div>
</div>
<div class="menuicon">
<div></div>
<div></div>
<div></div>
<nav id="navhover">
<a href="about.html"> About</a>
<a href="https://github.com/Build-Week-Testify">Login</a>
<a href="https://github.com/Build-Week-Testify">Sign Up</a>
</nav>
</div>
</div>
<h1>Testify</h1>
</section>
<div class="container">
<section class="about">
<h3>What We Do</h3>
<p>We provide an easily customizable testing environment for you and your students. Geared towards teachers and homeschool parents we strive to make your job easier, and allow more focus to be on the student instead of spending hours looking for or creating tests by hand.
</p>
</section>
<section class="users">
<div class="user">
<h4>Teachers</h4>
<p>As a teacher you have the ability to: <br>
<br>
- Create and login to a new account <br>
<br>
- Write test questions and choose if they are multiple choice, true/false, or fill in the blank. Additionally if it’s multiple choice you can add the correct and incorrect answers. <br>
<br>
- Edit and delete individual test questions. <br>
<br>
- Delete tests you have created. <br>
<br>
- See a report of all of the test results from you class. <br>
</p>
</div>
<div class="user">
<h4>Students</h4>
<p>As a student you can: <br><br>
- Create an account that is connected to your teacher so that they can send tests for you to take. <br> <br>
- Take test that your teacher has sent to you and submit them for grading. <br> <br>
- Can see report card. <br> <br>
- Can see their assigned tests. <br><br>
- Can view completed tests, and their score. <br> <br>
</p>
</div>
</section>
<h2>Types of tests</h2>
<section class="tests">
<div class="test">
<h5>1</h5>
<img src="img/Multiplechoice.png" alt="Multiple Choice question">
</div>
<div class="test">
<h5>2</h5>
<img src="img/trueorfalse.png" alt="True or false question">
</div>
<div class="test">
<h5>3</h5>
<img src="img/essayanswer.png" alt="Essay answer">
</div>
</section>
</div>
<footer>
<!-- <div class='icons'>
<img src="#" alt="#">
<img src="#" alt="#">
</div> -->
<p>Testify copyright 2019</p>
</footer>
</body>
</html>