-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (77 loc) · 2.63 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
<!DOCTYPE html>
<html>
<title>DNS101</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script>
</script>
<style type="text/css">
html {
background-color: #333333;
}
#quote {
font-family: "American Typewriter", serif;
font-size: 14px;
color: rgba(0,0,0,1);
/*text-shadow: 3px 3px 5px #000000;*/
/*background-color: rgba(0,0,0,0);*/
overflow: hidden;
border: 1px solid #FFFFFF;
}
#deftext {
border: 1px solid #AAAAAA;
padding: 10px;
width: 50%;
margin-top: 15px;
border-radius: 5px;
background-color: rgba(135,169,155,0.4);
color: #000;
}
@media only screen and (max-width: 760px) {
#deftext { display: none; /*remove on mobile*/ }
#bannerpic {margin-top: 20px; }
}
.pagecol {
width: 90%;
max-width:1500px;
max-width:1800px;
margin: auto;
background-color: rgba(255,255,255,1);
}
/* misc*/
.btn {cursor: pointer; color:#FFF; text-shadow: 2px 2px 8px #000000;}
.w3-left, .w3-right, .w3-badge {cursor:pointer}
.w3-badge {height:13px;width:13px;padding:0}
.thumb {max-width: 120px; padding-bottom: 8px; padding-right: 8px}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<div class="pagecol" style="max-width:1500px;">
<!-- Page content -->
<div class="w3-content w3-padding" style="max-width:1564px;">
<!-- Main Content -->
<div class="w3-container w3-padding-32">
<h1>DNS-training repository</h1>
<h2>2024</h2>
<a href="files/dns-training-2024/PDF/DNS-Training-Basic.pdf">Presentation - DNS Training Basic</a><br/>
<a href="files/dns-training-2024/PDF/DNS-Training-Advanced.pdf">Presentation - DNS Training Advanced</a><br/>
<br/>
<a href="files/dns-training-2024/lab/DNS-Training-Lab_instructions.pdf">Lab Instruktions</a><br/>
<a href="files/dns-training-2024/lab/IP-plan.pdf">IP-Plan</a><br/>
<a href="files/dns-training-2024/lab/course_priv.zip">SSH-Key</a><br/>
<!--
<a href="files/dns-training-2022/Laborationer.pdf">Instruktioner Lab</a><br/>
<a href="files/dns-training-2022/keypair.zip">SSH-nyckel</a><br/>
<a href="files/dns-training-2022/Network.png">Nätskiss</a><br/><br/>
<a href="files/dns-training-2022/P1-DNS101.pdf">Slides (DNS101)</a><br/>
<a href="files/dns-training-2022/P2-DNS404.pdf">Slides (DNS404)</a><br/>
<a href="files/dns-training-2022/P3-DNS_in_the_zone.pdf">Slides (DNS in the zone)</a><br/>
<a href="files/dns-training-2022/P4-DNSSEC.pdf">Slides (DNSSEC)</a><br/>
-->
</div>
</div>
</body>
</html>