-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Links</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
body {
padding-top: 2em;
/* Use an image as background */
background-image: url("img/blue-background.jpg");
}
.logo {
width: 200px;
height: 200px;
background: #fff;
margin: 0 auto 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 3em;
}
.link-button {
margin-bottom: 15px;
width: 100%;
font-size: 1.5em;
text-transform: uppercase;
background: white;
color: black;
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 text-center">
<div class="logo">
<img src="https://zny-uploads.s3.amazonaws.com/icons/ZNY%20Logo%20Circularpng.png"
width="200" alt="NYARTCC Logo" />
</div>
<div id="links">
<a class="btn btn-primary btn-block link-button" href="https://nyartcc.org">NYARTCC Website</a>
<a class="btn btn-primary btn-block link-button" href="https://facebook.com/nyartcc">Facebook</a>
<a class="btn btn-primary btn-block link-button" href="https://instagram.com/nyartcc">Instagram</a>
<a class="btn btn-primary btn-block link-button" href="https://tiktok.com/@nyartcc">TikTok</a>
<a class="btn btn-primary btn-block link-button" href="https://youtube.com/@NyartccOrg/">YouTube</a>
<a class="btn btn-primary btn-block link-button" href="https://nyartcc.org/feedback">Submit Controller Feedback</a>
</div>
</div>
</div>
</div>
</body>
</html>