-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (74 loc) · 2.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="general.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap"
rel="stylesheet">
</head>
<body>
<script src="https://kit.fontawesome.com/46fbe631fc.js" crossorigin="anonymous"></script>
<div class="nav-bar">
<div class="logo">
<img src ="sentinels main logo.png" width="270" top="4000px" alt="">
</div>
<div class="nav-links">
<ul>
<li><a href="https://www.sentinels.gg/our-story">About</a></li>
<li><a href="https://www.sentinels.gg/valorant">VALORANT</a></li>
<li><a href="https://www.sentinels.gg/wallpapers">Wallpapers</a></li>
<li><button class="shop" onclick="shoplink()">Shop</button></li>
</ul>
</div>
</div>
<section class ="first">
<img src = "sentinels main page.jpg" width="1700" top="1200">
</section>
<section class ="second">
<img src = "sentinels main merch.png" width="1700" top="0" >
</section>
<section class ="third">
<div class="news">
<h3> NEWS & EVENTS </h3>
</section>
<footer class="sticky-footer">
<div class = "container">
<br>
<div class = "singleCol SEN-SOCIALS d-flex justify-content-evenly">
<a href = "https://twitter.com/Sentinels">
<i class="fa-brands fa-square-twitter"></i>
</a>
<a href = "https://www.instagram.com/sentinels/?hl=en">
<i class="fa-brands fa-instagram"></i>
</a>
<a href = "https://www.youtube.com/@Sentinels">
<i class="fa-brands fa-youtube"></i>
</a>
<a href = "https://www.facebook.com/SentinelsGG/">
<i class="fa-brands fa-twitch"></i>
</a>
<a href = "https://discord.com/invite/sentinels">
<i class="fa-brands fa-discord"></i>
</a>
</div><br>
<p class="copyright">
Copyright © 2022 Sentinels
</p><br><br>
</div>
</div>
</footer>
<script>
function shoplink(){
document.getElementsByClassName("shop").addEventListener("click",window.location.href="https://shop.sentinels.gg/");
}
</script>
</body>
</html>