-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselected.html
More file actions
74 lines (66 loc) · 3.16 KB
/
selected.html
File metadata and controls
74 lines (66 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Квизови</title>
<link rel="shortcut icon" type="image/jpg" href="../images/favicon.png"/>
<!--CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--JQUERY-->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<!--JAVASCRIPT-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" color="">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap" rel="stylesheet">
<!--LATEST COMPILED-->
<link rel="stylesheet" href="../css/style.css">
<script src="../js/main.js"></script>
<script src="../js/template.js"></script>
</head>
<body id="main-body">
<header>
<section class="container" id="header">
<div class="row nav-bar">
<h2 id="logo"><a href="index.html">КВИЗОВИ.МК</a></h2>
<input type="checkbox" id="check">
<label for="check" id="hamburger"><i class="fas fa-bars"></i></label>
<nav>
<ul>
<li><a href="topics.html">QUIZ TOPICS</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
</div>
</section>
</header>
<section class="main-topic-container">
<div class="container">
<div class="row quiz-info">
<div class="col-sm-6 sub-heading text-center">
<h2 id="set-title" class="font-oswald">TOPIC-TITLE</h2>
<div class="btn start-btn">ПОЧНИ</div>
</div>
<div class="col-sm-12 col-md-6 quiz-rules text-center">
<h3 class="font-oswald">ПРАВИЛА</h3>
<div class="rules">
<ol>
<li>Време на решавање: 3 минути</li>
<li>Неможе да се навраќа на прашања</li>
<li>Мора да се одговорат сите прашања</li>
<li>После секое селектирано прашање добивате одговор дали е точно одговорено</li>
<li>За успешно завршен квиз треба да освоите<span style="font-size: 1.8rem"> минимум 50%</span></li>
</ol>
</div>
</div>
</div>
</div>
</section>
</body>
</html>