-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (51 loc) · 1.94 KB
/
index.php
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
<html>
<head>
<title> Home | Tech Support Central </title>
<style>
#SideBar {
width: 375px;
height: 800px;
background-color: #D66225;
float: right;
text-align: center;
}
#MainBody {
width: 625px;
height: 800px;
background-color: #EEEEEE;
float: left;
text-align: center;
}
</style>
<?php include 'includes/head.html';?>
</head>
<body bgcolor="#323232">
<div id="Container">
<?php include 'includes/header.html';?>
<div id="SideBar">
<br>
<iframe src="https://discord.com/widget?id=824042976371277884&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
<div id="MainBody">
<h2 style="color: #D66225"> Welcome to Tech Support Central! </h2>
<br>
<h2> What we offer: </h2>
<h3 style="text-align: left; margin-left: 16px; margin-right: 16px">
<ul>
<li> Free and fast tech support for whatever your issue may be </li>
<br>
<li> Tech discussions for you to show off your personal setups </li>
<br>
<li> Shopping recommendations, from tablets to PCs to game consoles; whatever you need, we can help! </li>
<br>
<li> We're always looking for more support team members, so apply if you wish and help out others! </li>
</ul>
</h3>
<h3> We also have a <a href="https://matrix.org"> Matrix </a><a href="https://element.io/blog/spaces-blast-out-of-beta/">Space</a> at <a href="https://matrix.to/#/#techsupportcentral:matrix.org">#techsupportcentral:matrix.org</a>. </h3>
<br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/FQYcyzx_lGo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<?php include 'includes/footer.html';?>
</div>
</body>
</html>