-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (104 loc) · 5.44 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- font awesome -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- my stylesheet -->
<link rel="stylesheet" type="text/css" href="Assets/styles/default.css" />
<!-- favicon -->
<link rel="icon" href="Assets/images/logo.png"/>
<title>Code Quiz</title>
</head>
<body>
<nav class="navbar fixed-top">
<a class="navbar-brand" href="./index.html">
<img src="Assets/images/logo.png" width="35" height="35" class="d-inline-block align-top" alt=""
loading="lazy">
</a>
<div class=".navbar-text">Code Quiz</div>
</nav>
<!-- screen left used for page load animation -->
<div class="screen-left"></div>
<!-- screen right used for page load animation -->
<div class="screen-right"></div>
<!-- screen center used for page load animation -->
<img src="Assets/images/logo.png" class="screen-center" />
<!-- container start -->
<div class="container">
<!-- container is divided in 2 rows -->
<div class="row">
<!-- this row is divided in 2 cols of size5 and size7 -->
<div class="col-lg-5">
<img id="homepageimage" src="Assets/images/logo.png" alt="logo image" />
<div id="welcome-big">Code Quiz</div>
<div id="welcome-small">Technology Code Quizzes</div>
</div>
<div class="col-lg-7">
<div class="row">
<div class="col mt-auto d-flex flex-row align-content-center justify-content-around flex-wrap">
<a class="btn btn-lg" href="jsquiz.html" role="button">
<img src="Assets/images/pill_arrow_trans.png" height="20px" />
JavaScript
</a>
<a class="btn btn-lg" href="gitquiz.html" role="button">
<img src="Assets/images/pill_arrow_trans.png" height="20px" />
GIT
</a>
<a class="btn btn-lg" href="practicequiz.html" role="button">
<img src="Assets/images/pill_arrow_trans.png" height="20px" />
Practice/Demo Quiz
</a>
<!-- **** Retained on Purpose - The following are buttons for future code quizzes **** -->
<!--
<a class="btn btn-lg" href="#" role="button"><img src="Assets/images/pill_arrow_trans.png" height="20px" />C#</a>
<a class="btn btn-lg" href="#" role="button"><img src="Assets/images/pill_arrow_trans.png" height="20px" />HTML5</a>
<a class="btn btn-lg" href="#" role="button"><img src="Assets/images/pill_arrow_trans.png" height="20px" />CSS3</a>
<a class="btn btn-lg" href="#" role="button"><img src="Assets/images/pill_arrow_trans.png" height="20px" />JAVA</a>
<a class="btn btn-lg" href="#" role="button"><img src="Assets/images/pill_arrow_trans.png" height="20px" />SQL</a>
-->
</div>
</div>
<hr />
<div class="row">
<div class="col mb-auto d-flex flex-column align-items-end justify-content-center flex-wrap">
<div style="width: 250px;">
<img src="Assets/images/hourglass_trans1.png" height="70px" style="display: block;
margin-left: auto;
margin-right: auto;" />
<div style="text-align: center;font-size: 25px;">More Quizzes Coming Soon</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--container end-->
<div style="height: 45px;"></div>
<!--hack to allow scroll content behind the fixed footer-->
<footer>
<!--footer start-->
<img src="Assets/images/pill_arrow.png" height="15px"> Coded By Abhijeet Bhagat
<a href="https://github.com/bhagatabhijeet/codequiz">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</footer>
<!--footer end-->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="Assets/scripts/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<!-- index.js for page load animations -->
<script src="Assets/scripts/index.js"></script>
</body>
</html>