-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
46 lines (46 loc) · 2.08 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BroBot 8080 | About</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,500" rel="stylesheet">
<script src="/app.js"></script>
<link rel="shortcut icon" href="/img/brobot.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3WB47XB86H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3WB47XB86H');
</script>
</head>
<body>
<div class="masthead">
<div class="nav-main">
<div class="site-logo">
<img src="img/brobot.png" class="little-logo">BroBot 8080
</div>
<div class="mobile-menu" onclick="toggleMenu()" id="mobile-menu-button" aria-expanded="false">☰</div>
</div>
<div class="top-menu" id="top-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="alerts.html">Alerts</a></li>
<li class="selected"><a href="about.html">About</a></li>
</ul>
</div>
</div>
<div id="content">
<h1>About Brobot</h1>
<div>Brobot is a dedicated community of PC and gaming hardware enthusiasts. Join the discussion in our Discord or Telegram group!
</div><br/>
<div>Telegram is a free messaging app for Android, iOS and PC/Mac/Linux. <br/><a href="https://telegram.org/">Get it here</a>.</div><br/>
<div>Discord is a free social messaging platform for Android, iOS and PC/Mac/Linux. <br/><a href="https://discord.gg/uuCNucWvgy">Join our discord here</a></div>
</div>
<div id="footer">
</div>
</body>
</html>