-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
89 lines (86 loc) · 4.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tarab1te</title>
<meta name="theme-color" content="#2F3136">
<meta name="description" content="Some website I made idk">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
</head>
<body>
<nav>
<ul>
<i class="bi bi-list" onclick="hamburger()"></i>
<li><a href="index.html"><i class="bi bi-house-door-fill"></i> home</a></li>
<li><a href="https://github.com/Jayydoesdev"><i class="bi bi-github"></i> github</a></li>
<li><a href="#projects"><i class="bi bi-tools"></i> projects</a></li>
</ul>
</nav>
<div class="container">
<div class="hamburger">
<li><a href="index.html">home</a></li>
<li><a href="https://github.com/Jayydoesdev">github</a></li>
<li><a href="#projects">projects</a></li>
</div>
<div class="intro">
<img src="/img/pfp.gif" alt="pfp" class="pfp">
<h1>hi, i'm tarab1te <img src="/img/statuses/online.png" alt="status" id="status"></h1>
<h2>i code things and watch anime some times (i break everything i touch)</h2>
</div>
<div class="projects-container">
<h1 class="title">projects</h1>
<div class="projects" id="projects">
<div class="project">
<h1 class="project-title">Anti-Bot</h1>
<h1 class="project-description">
Anti-Bot is an Advanced AutoMod Discord Bot with features like tags, auto responders, tickets,
and configuration. Trusted by over 1600 servers, We aim to support your server with a powerful
Discord bot.</h1>
<div class="buttons">
<a href="https://github.com/antibot-team" class="button">Github</a>
<a href="https://antibot.xyz" class="button">Website</a>
</div>
</div>
<div class="project">
<h1 class="project-title">Alt Detector</h1>
<h1 class="project-description">
Alt Detector allows you to set days limits on user accounts that have to be for joining the
server.</h1>
<div class="buttons">
<a href="https://alt-detector.tb1.pw" class="button">Website</a>
</div>
</div>
<div class="project">
<h1 class="project-title">Zygote</h1>
<h1 class="project-description">
A Discord bot for url shortening.</h1>
<div class="buttons">
<a href="https://zyte.cloud" class="button">Website</a>
</div>
</div>
<div class="project">
<h1 class="project-title">Pizza</h1>
<h1 class="project-description">
An advanced moderation Discord bot.</h1>
</div>
<div class="project">
<h1 class="project-title">Jasper</h1>
<h1 class="project-description">
An open source Discord bot for tag management.
</h1>
<div class="buttons">
<a href="https://github.com/JayyDoesDev/jasper" class="button">Github</a>
</div>
</div>
</div>
</div>
<footer>made with ❤️ by tarab1te • <span><a href="https://github.com/JayyDoesDev/personal-site">source
code</a></span></footer>
</div>
<script src="js/presence.js"></script>
<script src="js/hamburger.js"></script>
</body>
</html>