-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
131 lines (92 loc) · 5.15 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
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
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title -->
<title>FleaMarketBot</title>
<!-- STYLE SHEETS -->
<link rel="stylesheet" media="screen and (min-width: 2000px)" href="stylesheets/contactExtraLarge.css">
<link rel="stylesheet" media="screen and (min-width: 1280px) and (max-width: 1999px)" href="stylesheets/contactLarge.css">
<link rel="stylesheet" media="screen and (max-width: 1279px)" href="stylesheets/contactSmall.css">
<!-- FONTS -->
<link href="//db.onlinewebfonts.com/c/b459103556cd3b6504b5a9fe47b8ca07?family=Swiss+721" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navContainer" id="home">
<!-- <div class="navLogoContainer">
<a href="index.html"><img src="resources/LogoVectorLarge.png" class="navLogo" alt="TogglEsports"></a>
</div> -->
<button class="navText navText1" id="Home"><a class="textDeco" href="index.html">Home</a></button>
<button class="navText navText2"><a class="textDeco" href="index.html#download">Download</a></button>
<button class="navText navText3"><a class="textDeco active" href="">About</a></button>
<button class="navText navText4"><a class="textDeco" href="commands.html">Commands</a></button>
<div class="navigation">
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="index.html#home" class="textSmall smallActive"><li>Home</li></a>
<a href="index.html#download" class="textSmall"><li>Download</li></a>
<a href="about.html" class="textSmall"><li>About</li></a>
<a href="commands.html" class="textSmall"><li>Commands</li></a>
</ul>
</div>
</div>
<div class="login">
<a style="text-decoration: none" href="signup.html">
<div class="signup">
<p class="signupText">Sign Up</p>
<img src="Images/signup.png" class="loginIcon" alt="Login">
</div>
</a>
</div>
</nav>
<script>
var small = document.getElementsByClassName("textSmall");
var btns = document.getElementsByClassName("textDeco");
for (var i = 0; i < small.length; i++){
small[i].addEventListener("click", function() {
const current = document.getElementsByClassName("smallActive");
current[0].className = current[0].className.replace(" smallActive", "");
this.className += " smallActive";
});
}
for (var i = 0; i < btns.length; i++){
btns[i].addEventListener("click", function() {
const current = document.getElementsByClassName("active");
current[0].className = current[0].className.replace(" active", "");
this.className += " active";
});
}
</script>
<div class="mainContainer">
<div class="aboutContainer">
<h1 class="headerText">About the Developer</h1>
<p class="bodyText">Hello! My name is James (Jwaugh3) and I am the developer of Fleamarketbot. I'm a self taught developer who thoroughly enjoys the twitch community and have a passion for making tools for it. I got the idea to build
this twitch tarkov bot while watching Sacriel play EFT and he would ask chat the price of a few items. While asking, I would notice chat would always return multiple different answers all claiming to be accurate. This got me thinking that there was a more logical way of doing this.
Thus began my journey building the first ever tarkov market bot! <br>
I build Fleamarketbot as a solo developer because I was super interested in Escape From Tarkov and found myself investing many hours playing, watching, and enjoying the game.
If you are interested to see more of my projects you can check out another here: <a class="linkMeta" target="_blank" href="https://www.metamoderation.com">MetaModeration</a>
</p>
<h1 class="headerText">About FleaMarketBot</h1>
<p class="bodyText">FleaMarketbot is a Twitch bot that I designed to make it easier for twitch chat to interact with and provide information to the streamer. By using a simple command in twitch chat, you can get the current(24hr average) price of any item in Escape From Tarkov. Fleamarketbot makes it super simple
to get tarkov prices fast and accurate. <br>
Interested in getting Fleamarketbot on your channel? Join here: <a href="https://www.patreon.com/join/FleaMarketBot/checkout?rid=5298170" target="_blank" class="linkMeta">Get Fleamarketbot</a>
</p>
</div>
</div>
<img src="resources/blackDivFooterBottom.png" class="containerDividerFooter" alt="Divider">
<!-- Footer -->
<footer class="footerContainer">
<div class="footerNav">
<button class="homeFooterButton"><a class="homeFooterButton" href="#Home">Home</a></button>
<button class="downloadFooterButton"><a class="downloadFooterButton" href="#download">Download</a></button>
<button class="contactUsFooterButton"><a class="contactUsFooterButton" href="about.html">About</a></button>
</div>
</footer>
</body>
</html>