-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (90 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Safe Exam Browser Homepage</title>
<!-- Link to Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/style.css">
<style>
.centered {
text-align: center;
}
</style>
</head>
<body>
<!-- Header -->
<div class="container mt-5">
<div class="row">
<div class="col-12 centered">
<h1>Safe Exam Browser Homepage</h1>
</div>
</div>
</div>
<!-- Content -->
<div class="container">
<div class="row">
<!-- First Column -->
<div class="col-md-6 offset-md-3">
<img src="images/hub.webp" alt="The HUB Logo" class="img-fluid mb-2">
<button onclick="window.open('https://hwdsb.elearningontario.ca', '_blank');" class="btn btn-warning btn-block">Open The HUB</button>
</div>
</div>
</div>
<!-- Separator -->
<div class="grid">
<hr class="sketch-rule grid__item">
</div>
<div class="container">
<div class="row">
<!-- First Column -->
<div class="col-md-3">
<img src="images/desmos.webp" alt="Desmos Calculator" class="img-fluid mb-2">
<button onclick="window.open('https://desmos.com/calculator', '_blank');" class="btn btn-success btn-block mb-3">Graphing Calculator</button>
</div>
<!-- Second Column -->
<div class="col-md-3">
<img src="images/desmos.webp" alt="The Desmos Logo" class="img-fluid mb-2">
<button onclick="window.open('https://desmos.com/scientific', '_blank');" class="btn btn-primary btn-block">Scientific Calculator</button>
</div>
<!-- Third Column -->
<div class="col-md-3">
<img src="images/polypad.webp" alt="Polypad" class="img-fluid mb-2">
<button onclick="window.open('https://polypad.amplify.com/p', '_blank');" class="btn btn-info btn-block mb-3">Polypad</button>
</div>
<!-- Forth Column -->
<div class="col-md-3">
<img src="images/translate.webp" alt="Polypad" class="img-fluid mb-2">
<button onclick="window.open('https://www.bing.com/translator', '_blank');" class="btn btn-secondary btn-block mb-3">Translator</button>
</div>
</div>
</div>
<div class="container-fluid mt-5">
<div class="row">
<div class="col-md-6">
<h2>Open Each Tool</h2>
<p>Using the buttons above, open each site in a separate window, then minimize the window.</p>
<img src="images/minimize.webp" alt="SEB Website Toggle Image" class="img-fluid">
</div>
<div class="col-md-6">
<h2>Site Selection Globe</h2>
<p>Using the globe button in the bottom left corner, switch between sites.</p>
<img src="images/globe-select.webp" alt="SEB Website Toggle Image" class="img-fluid">
</div>
</div>
</div>
<!-- Footer -->
<div class="container-fluid mt-5">
<div class="row">
<div class="col-md-6 offset-md-3">
<img src="https://www.hwdsb.on.ca/wp-content/themes/hwdsb/images/footer.jpg" alt="Be You, Be Excellent Footer Image" class="img-fluid">
</div>
</div>
</div>
<!-- Link to Bootstrap JS and Popper.js -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>