-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion.html
76 lines (69 loc) · 2.63 KB
/
question.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
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
<!DOCTYPE html>
<html style="background-color: #CCCCFF;">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Questionnaire</title>
<link rel="stylesheet" href="style.css">
<script src="jquery-3.6.0.min.js"></script>
<script src="scripts.js">
</script>
</head>
<body>
<header id="main-header">
<div class="container">
<h1>Phase 2 Questionnaire</h1>
</div>
</header>
<div class="navbar">
<a href="index.html">Home</a>
<a href="mockup.html">Prototype</a>
<div class="dropdown">
<button class="dropbtn">Phase 1 Documentation
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="projectplan1.html">Preliminary Project Plan</a>
<a href="wrs1.html">WRS Document</a>
<a href="creeping1.html">Creeping Rate</a>
<a href="presentation1.html">Presentation</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Phase 2 Documentation
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="projectplan2.html">Evolving Project Plan</a>
<a href="processspec.html">Process Specifications</a>
<a href="classdiagram.html">Class Diagram</a>
<a href="creeping2.html">Creeping Rate</a>
<a href="pig.html">Problem Interdependency Graph</a>
<a href="sig.html">Softgoal Interdependency Graph</a>
<a href="usecase.html">Use Case Diagram</a>
<a href="question.html">Questionnaire</a>
<a href="manual.html">User Manual</a>
<a href="vision.html">Vision Document</a>
<a href="wrs2.html">WRS Document</a>
<a href="presentation2.html">Presentation</a>
</div>
</div>
</div>
<section id="showcase">
<div class="container">
<h1>
Questionnaire
</h1>
</div>
</section>
<div class="container">
<div id="presentation">
<iframe src="https://rawcdn.githack.com/nasif-mahmood/YouSee/89676248454c27e781257c4fb67ea381c6788e78/Phase2/Requirements%20Documents/Questionnaire.pdf" style="width:100%; height:1000px;" frameborder="0"></iframe>
</div>
</div>
<footer id="main-footer">
<p>© 2020/2021 YouSee</p>
</footer>
</body>
</html>