-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCIRResult.html
65 lines (59 loc) · 2.25 KB
/
CIRResult.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
<!--VERSION #1:
Please update the version # everytime you update the code! -->
<!--TODO: Change filename to "CIRResult" -->
<!DOCTYPE html>
<html>
<head>
<title>Result</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="index-style.css" rel="stylesheet" type="text/css">
<header>
<!-- Make a Top Navigation menu: -->
<nav id = "menu">
<ul>
<li>
<a href="index.html" >Home</a>
</li>
<li class="active">
<a href = "quiz.html" style = "color:#F58B8D;">Quiz</a>
</li>
<li>
<a href = "information.html" >Information</a>
</li>
</ul>
</nav>
</header>
<h1 id = "siteTitle">Niche Hub</h1>
</head>
<body>
<center>
<div id = "header">
<h2>You might be good at...</h2>
</div>
</center>
<br><br>
<center>
<div class = "content">
<img src="CIR.png" alt="pencil vector art" width="200" height="200">
<h3>Computer Information Research</h3>
<p>
Computer information researchers are the people that study<br>
and analyze new problems to find new and efficient ways technology<br>
can be used! They are good at observing user needs, critically looking<br>
at results, and testing existing systems! Computer information researchers<br>
often are highly skilled in advanced mathematics, theory, core programming<br>
structures and concepts, and statistical models. The characcteristics of <br>
potential researchers are a great attention to detail and critical thinking!<br>
</p>
<br><br>
</div>
<button onclick = startQuiz()>RETAKE QUIZ</button>
<br><br>
</center>
</body>
<script>
function startQuiz(){
window.location.href = "quiz.html";
}
</script>
</html>