-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
31 lines (31 loc) · 1.54 KB
/
footer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name='robots' content='noindex,nofollow' />
<title>Footer</title>
</head>
<body>
<div class="footer">
<div class="footer-spacer">
<div id="footer">
<h3>Have a question?</h3>
<p><a href="../pages/contact.html" style="text-decoration: underline; color: black">Contact us</a><br></p>
</div>
<div id="footer">
<h3>Follow our social media.</h3>
<div style="grid-template-columns: 1fr 2fr 10px 2fr 1fr; display: grid;">
<a href="https://youtube.com/channel/UCsf-2uaqZWzwzsedZvfNPKQ" style="grid-column: 2;"><img src="../static/images/youtube.webp" style="filter: invert(); max-width: 90%; height: auto;" alt="Toasted Robotics"></a>
<a href="https://instagram.com/toastedrobotics" style="grid-column: 4;"><img src="../static/images/instagram.webp" style="filter: invert(); max-width: 90%; height: auto;" alt="@toastedrobotics"></a>
</div>
</div>
<div id="footer">
<h3>Sponsor</h3>
<p>Want to <b>sponsor</b> our team? <br>Check out our <strong><a href="../pages/contact.html" style="text-decoration: underline; color: black">contact</a></strong> page.</p>
</div>
</div>
</div>
</body>
</html>