-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
133 lines (114 loc) · 4.5 KB
/
contact.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact</title>
<script src="https://kit.fontawesome.com/8771781f50.js" crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./static/styles.css">
<link rel="stylesheet" href="./static/contact.css">
</head>
<body id="body">
<div class="main">
<!-- HEADER/NAV-BAR -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div>
<img id="headerLogo" src="./static/img/logo.png" alt="Chess Logo">
</div>
<span class="navbar-brand mb-0 h1"><h1>YRChess</h1></span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<div class="navbar-nav">
<a class="nav-item nav-link" href="./index.html">Home</a>
<a class="nav-item nav-link" href="./about.html">About</a>
<a class="nav-item nav-link" href="./events.html">Events</a>
<a class="nav-item nav-link" href="./contact.html">Contact Us</a>
</div>
</div>
</nav>
</header>
<!-- BANNER -->
<div id="bannerBackground" style="background-image: url('./static/img/yrchess2023.png');">
<div id="banner">
<h1>Contact Us</h1>
</div>
</div>
<!-- MAIN PAGE GOES HERE -->
<main class="full-page">
<!-- CONNECT WITH US -->
<div class="section" id="connectUs">
<div class="title-block">
<h1>Connect with Us</h1>
</div>
<div class="text-block text-center" id="connectBlurb">
<h3>If you have any questions, or you wish to contact us, you can do so through the platforms below. We
are here to answer your questions!</h3>
</div>
</div>
<div class="darker-background">
<!-- PAST EVENTS -->
<div id="communications">
<div class="title-block">
<h1>Communications</h1>
</div>
<div class="text-center" id="socials">
<div class="text-block text-right">
<a href=""><i class="fa-brands fa-instagram"> instagram</i></a>
<a href=""><i class="fa-brands fa-discord"> Discord</i></a>
</div>
<div class="text-block text-left">
<a href=""><i class="fa-brands fa-twitter"> Twitter</i></a>
<a href=""><i class="fa-brands fa-facebook"> Facebook</i></a>
</div>
</div>
</div>
</div>
</main>
<hr>
<!-- FOOTER -->
<footer>
<hr>
<div id="footer">
<div id="footerInfo">
<img id="footerLogo" src="./static/img/img.png" alt="">
<div class="socials">
<a href=""><i class="fa-brands fa-discord"></i></a>
<a href=""><i class="fa-brands fa-github"></i></a>
</div>
<h5>info@yrchess.com</h5>
<h6>© 2023 YRChess. All rights reserved.</h6>
</div>
</div>
</footer>
</div>
<!-- IMPORTS -->
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
</body>
</html>