-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (71 loc) · 4.28 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
<!DOCTYPE html>
<html>
<head>
<title>LaraTests.com - Test your knowledge of the Laravel framework!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#de4f48">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="jumbotron jumbotron-fluid hello">
<div class="container">
<h1 class="display-4">LaraTests</h1>
<p class="lead">Test your knowledge of the Laravel framework!</p>
<!--<hr>-->
<!--<div class="subject">-->
<!--<div>Take test about-->
<!--<span class="select-topic btn dropdown-toggle btn--baseline" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">-->
<!--everything-->
<!--</span>-->
<!--<div class="dropdown-menu">-->
<!--<a class="dropdown-item" href="#">The Basics</a>-->
<!--<a class="dropdown-item" href="#">Frontend</a>-->
<!--<a class="dropdown-item" href="#">Security</a>-->
<!--<a class="dropdown-item" href="#">Digging Deeper</a>-->
<!--<a class="dropdown-item" href="#">Database</a>-->
<!--<a class="dropdown-item" href="#">Eloquent ORM</a>-->
<!--<a class="dropdown-item" href="#">Testing</a>-->
<!--</div>-->
<!--<!–on <span class="select-topic btn dropdown-toggle btn--baseline" id="selectDifficultyDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">–>-->
<!--<!–any–>-->
<!--<!–</span> level.–>-->
<!--<!–<div class="dropdown-menu" aria-labelledby="selectDifficultyDropdown">–>-->
<!--<!–<a class="dropdown-item disabled" href="#">any</a>–>-->
<!--<!–<a class="dropdown-item disabled" href="#">beginners</a>–>-->
<!--<!–<a class="dropdown-item disabled" href="#">intermediate</a>–>-->
<!--<!–<a class="dropdown-item disabled" href="#">expert</a>–>-->
<!--<!–</div>–>-->
<!--</div>-->
<!--</div>-->
</div>
</div>
<div id="root">
<div>
<questions></questions>
</div>
</div>
<footer class="jumbotron jumbotron-fluid bg-dark text-light text-center">
<div class="container">
Made with a passion for Laravel by <a href="https://rickkuilman.nl" class="text-light underline" target="_blank" title="Link to rickkuilman.nl">Rick Kuilman</a> <br>Groningen, The Netherlands
<hr>
<a href="https://www.netlify.com" target="_blank" title="Link to netlify.com">
<img src="netlify.png" alt="Logo of Netlify"/>
</a>
<i class="heart"></i>
<a href="https://github.com/rickkuilman/laratests" target="_blank" title="Link to git repository github.com">
<img src="github.png" alt="Logo of GitHub" />
</a>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>