-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (87 loc) · 5.58 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
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ILikeMice Portfolio</title>
<link rel="shortcut icon" type="image/x-icon" href="pfp.png" />
</head>
<script src="script.js"></script>
<body style="background-color: #1F1F1F; overflow-y: scroll;">
<div>
<h1 style="margin-top: 70px; margin-bottom: 70px; text-align: center; font-family: 'Droid Sans Mono', 'monospace', monospace;"> <span style="color: #CE9178;">I</span> <span style="color: #C586C0;">am</span> <span style="color: #9CDCFE;">ILikeMice</span><span style="color: #CE9178;">, a self-taught developer.</span></h1>
</div>
<div style="text-align: center; margin-bottom: 50px; ">
<a class="talkwithme" href="#contact" style="text-align: center; font-size: 20px; font-weight: 600; font-family: 'Droid Sans Mono', 'monospace', monospace; color: #CCCCCC;" > > Talk with me<span class="consoleblinker">_</span></a>
</div>
<div style="text-align: center; margin-bottom: 50px; ">
<a class="talkwithme" href="https://leetcode.com/u/ILikeMice/" style="text-align: center; font-size: 20px; font-weight: 600; font-family: 'Droid Sans Mono', 'monospace', monospace; color: #CCCCCC;" > > LeetCode<span class="consoleblinker">_</span></a>
</div>
<p style="font-size: 30px; text-align: center; font-weight: 600; font-family: 'Droid Sans Mono', 'monospace', monospace;"><span style="color: #569CD6;">projects.py</span><span style="color: #FFD700;">()</span></span></p>
<div style="height: fit-content; display: flex; flex-wrap: wrap; align-items: flex-start; width: 97%; margin: 0 auto;">
<div class="window">
<h2 class="title">Bots</h2>
<div class="project">
<a href="https://github.com/ILikeMice/SQL-discord-bot" class="projectname">SQL_Bot</a>
<p class="description">"A Simple Discord Bot made <span style="color: #C586C0;">for</span> changing SQL Databases."</p>
</div>
<div class="project">
<a href="https://github.com/ILikeMice/Discord-Chess-Bot" class="projectname">Chess_Bot</a>
<p class="description">"A Discord bot that plays chess against you!"</p>
</div>
<div class="project">
<a href="https://github.com/ILikeMice/Discord-Counting-Bot" class="projectname">Counting_Bot</a>
<p class="description">"A Discord bot that lets users count together!"</p>
</div>
<div class="project">
<a href="https://github.com/ILikeMice/Currency-bot" class="projectname">Currency_Bot</a>
<p class="description">"Discord bot made for converting currencies"</p>
</div>
</div>
<div class="window">
<h2 class="title">Games</h2>
<div class="project">
<a href="https://github.com/ILikeMice/Pygame-Chess-Bot" class="projectname">Pygame_Chess</a>
<p class="description">"A Chess bot written using pygame. Utilizes the stockfish engine."</p>
</div>
</div>
<div class="window">
<h2 class="title">Misc</h2>
<div class="project">
<a href="https://github.com/ILikeMice/ILikeMice.github.io" class="projectname">Portfolio</a>
<p class="description">"This website, aka my portfolio!"</p>
</div>
<div class="project">
<a href="https://github.com/ILikeMice/FEN-to-Image" class="projectname">FEN_to_Image</a>
<p class="description">"Generates an image of the chess board based on a FEN string"</p>
</div>
<div class="project">
<a href="https://github.com/ILikeMice/cpp-brainfk-interpreter" class="projectname">C++ Brainfuck interpreter</a>
<p class="description">"Similar to my python interpreter, rewritten in c++ and slightly optimized"</p>
</div>
<div class="project">
<a href="https://github.com/ILikeMice/python-brainfk-interpreter" class="projectname">Python Brainfuck</a>
<p class="description">"Runs Brainfuck code using Python"</p>
</div>
</div>
</div>
<div>
<p style="font-size: 30px; text-align: center; font-weight: 600; font-family: 'Droid Sans Mono', 'monospace', monospace; color: #CCCCCC;">experience.txt</p>
<div style="margin-top: 50px;">
<p class="skillname">python / discord-bots == 9.5</p>
<p class="skillname">html-css-js == 8.7</p>
<p class="skillname">c++ == 3.2</p>
</div>
</div>
<p style="margin-top: 70px; font-size: 30px; text-align: center; font-weight: 600; font-family: 'Droid Sans Mono', 'monospace', monospace; color: #569CD6;">contact-me</p>
<div id="contact" style="display: flex; justify-content: center; margin-bottom: 100px;">
<div class="discordfield" style="display: flex; background-color: #353535; height: 42px; width: 61px; padding-left: 11px;">
<img src="dclogo.png" onclick="window.location.href='https://discord.com/users/771786441617047582'">
</div>
<div onclick="window.location.href = 'https://discord.com/users/771786441617047582';" class="discordfield" style=" align-items: center; width: fit-content;">
<p style="align-self: baseline; color: #CCCCCC; font-weight: 600; font-family: 'Droid Sans Mono', 'monospace', monospace;">@ilikemice</p>
</div>
</div>
</body>
</html>