-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
107 lines (101 loc) · 5.44 KB
/
contacts.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
106
107
<!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>Contacts</h1>
<hr>
<div style="padding-top: 0.5cm; padding-bottom: 0.5cm;">
<div class="card" style="background-color: lime;">
<h3 class="card-header">Welfare Hotline</h3>
<div class="card-body">
<h4 style="padding-bottom: 0.5cm;" class="card-title">Need welfare support?</h4>
<a href="tel:01524944732" class="btn btn-primary">Call Welfare Line</a>
<p style="padding-left: 0.5cm;" class="card-text">01524 944732</p>
</div>
</div>
</div>
<div>
<div class="card" style="background-color: rgb(255, 114, 173);">
<h3 class="card-header">Tech Support Hotlines</h3>
<table>
<tr>
<td>
<div class="card-body">
<h4 class="card-title">TV Tech Support</h4>
<a href="tel:01524944736" class="btn btn-primary">Call TV Tech Support</a>
<p style="padding-left: 0.8cm;" class="card-text">01524 944736</p>
</div>
</td>
<td>
<div class="card-body">
<h4 class="card-title">Radio Tech Support</h4>
<a href="tel:01524944726" class="btn btn-primary">Call Radio Tech Support</a>
<p style="padding-left: 1.2cm;" class="card-text">01524 944726</p>
</div>
</td>
</tr>
</table>
</div>
</div>
<div style="padding-top: 0.5cm; padding-bottom: 0.5cm;">
<div class="card" style="background-color: crimson;">
<h3 class="card-header">Main Control Room (MCR) Hotline</h3>
<div class="card-body">
<h4 style="padding-bottom: 0.5cm;" class="card-title">Need to go live NOW?!</h4>
<a href="tel:01524944730" class="btn btn-primary">Call MCR Line</a>
<p style="padding-left: 0.3cm;" class="card-text">01524 944730</p>
</div>
</div>
</div>
<div style="padding-top: 0.5cm; padding-bottom: 0.5cm;">
<div class="card" style="background-color: white;">
<h3 class="card-header">Production Hotline</h3>
<div class="card-body">
<h4 style="padding-bottom: 0.5cm;" class="card-title">Need to chat to the TV or radio producing lead?</h4>
<a href="tel:01524944734" class="btn btn-primary">Call Production Line</a>
<p style="padding-left: 0.8cm;" class="card-text">01524944734</p>
</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>