-
Notifications
You must be signed in to change notification settings - Fork 0
/
training.html
88 lines (83 loc) · 4.96 KB
/
training.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
body {
background-color: rgb(255, 209, 223);
color: black;
padding: 1cm;
}
td:first-child {
border-right: solid 1px darkgray;
}
</style>
<title>Roses 2024 Internal Site</title>
</head>
<body>
<div style="padding: 1cm;">
<ul class="nav fixed-top" style="background-color: red;">
<li class="nav-item" style="padding-left: 0.5cm; margin-top: auto; margin-bottom: auto;">
<a class="nav-link active" href="/" style="color: white;"><h3><strong><img src="images/roses2024.png" alt="Roses logo" style="display:inline-block; height:1.5em; width:auto;"> Roses Internal</strong></h3></a>
</li>
<li class="nav-item" style="margin-top: auto; margin-bottom: auto; padding-left: 0.5cm;">
<a class="nav-link" href="/" style="color: white;"><h5>Home</h5></a>
</li>
<li class="nav-item" style="margin-top: auto; margin-bottom: auto; padding-left: 0.5cm;">
<a class="nav-link" href="training.html" style="color: white;"><h5>Training</h5></a>
</li>
<li class="nav-item" style="margin-top: auto; margin-bottom: auto; padding-left: 0.5cm;">
<a class="nav-link" href="/resources.html" style="color: white;"><h5>Resources</h5></a>
</li>
<li class="nav-item" style="margin-top: auto; margin-bottom: auto; padding-left: 0.5cm;">
<a class="nav-link" href="kit-allocation.html" style="color: white;"><h5>Kit Locations</h5></a>
</li>
<li class="nav-item" style="margin-top: auto; margin-bottom: auto; padding-left: 0.5cm;">
<a class="nav-link" href="/contacts.html" style="color: white;"><h5>Contacts</h5></a>
</li>
</ul>
</div>
<div>
<h1>On Demand Training</h1>
<hr>
<div style="padding-top: 0.5cm; padding-bottom: 0.5cm;">
<div class="card" style="background-color: rgb(255, 114, 173);">
<h3 class="card-header">Graphics Training <i style="font-size: medium;">YSTV & LA1TV</i></h3>
<div class="card-body">
<h4 class="card-title">Roses Graphics Operator Training</h4>
<p class="card-text">Learn how to change the on screen TV graphics using the graphics controller site.</p>
<a href="courses/graphics-op.html" class="btn btn-primary">Start Session</a>
</div>
<div class="card-body">
<h4 class="card-title">Roses Advanced Graphics Training</h4>
<p class="card-text">Learn how to add the Roses graphics to OBS (<i>doing the basic graphics training first is recommended</i>).</p>
<a href="courses/advanced-graphics.html" class="btn btn-primary">Start Session</a>
</div>
</div>
</div>
<div style="padding-top: 0.5cm; padding-bottom: 0.5cm;">
<div class="card" style="background-color: white;">
<h3 class="card-header">TV OB Tech Training <i style="font-size: medium;">YSTV</i></h3>
<div class="card-body">
<h4 class="card-title">Roses TV OB Tech Training 2024 Slides</h4>
<p class="card-text">Go through the TV OB tech training slideshow from this year to learn more about being a TV OB technician.</p>
<a href="courses/tv-ob-tech.html" class="btn btn-primary">Start Session</a>
</div>
</div>
</div>
<div style="padding-top: 0.5cm; padding-bottom: 0.5cm;">
<div class="card" style="background-color: white;">
<h3 class="card-header">Radio Tech Training <i style="font-size: medium;">URY</i></h3>
<div class="card-body">
<h4 class="card-title">Roses Radio Tech Training 2023 Slides</h4>
<p class="card-text">Go through the extensive radio tech training slideshow from last year to learn more about being a radio OB technician.</p>
<a href="courses/radio-tech.html" class="btn btn-primary">Start Session</a>
</div>
</div>
</div>
<div style="padding-top: 2cm; text-align: center;"><a href="/" type="button" class="btn btn-secondary">Back to homepage</a></div>
<footer style="padding-top: 2cm; text-align: center;">
<p style="font-size: small;">YSTV Computing Team 2024 - "Graphic design is my passion"</p>
</footer>
</body>
</html>