-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquizpass.html
68 lines (66 loc) · 2.97 KB
/
quizpass.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>You Passed</title>
<link rel="stylesheet" href="./css/materialize.css">
<link rel = "stylesheet" type = "text/css" href = "./css/endpage.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav>
<div class="nav-wrapper blue-grey darken-4">
<a href="index.html" class="brand-logo"><img src="./img/bct.png"/ style="margin: 5px 0 0 20px"></a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="https://www.uscis.gov/citizenship/learners/find-help-your-community">Find Local Help</a></li>
<li><a href="https://www.uscis.gov/n-400">NC-400 Form</a></li>
<li><a href="https://www.uscis.gov/sites/default/files/USCIS/Office%20of%20Citizenship/Citizenship%20Resource%20Center%20Site/Publications/100q.pdf">100 Questions</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html">Home</a></li>
<li><a href="https://www.uscis.gov/citizenship/learners/find-help-your-community">Find Local Help</a></li>
<li><a href="https://www.uscis.gov/n-400">NC-400 Form</a></li>
<li><a href="https://www.uscis.gov/sites/default/files/USCIS/Office%20of%20Citizenship/Citizenship%20Resource%20Center%20Site/Publications/100q.pdf">100 Questions</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</nav>
<div id="introSplash">
<div class="container" style="background-color: rgba(225, 225, 225, 0.80)">
<div class="container">
<div class="row">
<div class = "col s12 endpage">
<h3>Congratulations!</h3>
<h5>You Passed!</h5>
<img src="./img/003-happy.jpg" />
</div>
<div class="card col s12" style="background-color: rgba(20, 20, 200, 0.80)">
<div class="card-content white-text">
<p>Now you can either try again or investigate another option.</p>
</div>
<div class="card-action">
<a href="index.html">Click Here to Return Home</a>
</div>
</div>;
</div>
</div>
</div>
</div>
<footer class="page-footer blue-grey darken-4">
<div class="footer-copyright">
<div class="container">
©2017 B E A T C I T I Z E N S H I P T E S T . C O M
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./js/materialize.js"></script>
<script src="./js/data.js"></script>
<script src="./js/main.js"></script>
</body>
</html>