-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevpage.html
More file actions
52 lines (44 loc) · 2.68 KB
/
Copy pathdevpage.html
File metadata and controls
52 lines (44 loc) · 2.68 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Square Lion</title>
<link rel="shortcut icon" type="image/png" href="/images/square-lion/logo.png"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="/css/BasicLayout.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<link href="cover.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/21bd5aad55.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
<script src="/js/jquery-3.6.0.min.js"></script>
</head>
<body class="text-center">
<!-- Background -->
<video id="background-video" autoplay loop muted poster="/images/fish-fists/banner.png">
<source src="/videos/home.mov" type="video/mp4">
</video>
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column justify-content-center align-items-center">
<div role="main" class="inner cover rounded-5">
<img src="/images/square-lion/header.png" style="width: 90%;">
<p class="lead">
<a href="/games" class="btn btn-lg btn-secondary">Games</a>
<a href="/news" class="btn btn-lg btn-secondary">News</a>
<a href="/store" class="btn btn-lg btn-secondary">Store</a>
<a href="/support" class="btn btn-lg btn-secondary">Support</a>
</p>
<p class="lead">
<ul class="nav justify-content-center list-unstyled d-flex">
<li><a href="https://www.youtube.com/channel/UCSqHz-5bSZKgIhJ4xVqpFUw"><i class="fa-brands fa-square-youtube"></i></a></li>
<li class="ms-3"><a href="https://www.instagram.com/squarelionofficial/"><i class="fa-brands fa-square-instagram"></i></a></li>
<li class="ms-3"><a href="https://www.facebook.com/SquareLionOfficial"><i class="fa-brands fa-square-facebook"></i></a></li>
<li class="ms-3"><a href="https://twitter.com/SqLionOfficial"><i class="fa-brands fa-square-twitter"></i></a></li>
<li class="ms-3"><a href="https://github.com/square-lion/"><i class="fa-brands fa-square-github"></i></a></li>
<li class="ms-3"><a href="https://square-lion.itch.io/"><i class="fa-brands fa-itch-io"></i></a></li>
<li class="ms-3"><a href="https://linkedin.com/company/square-lion"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</p>
</div>
</div>
</body>
</html>