-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (94 loc) · 4.4 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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="og:url" content="https://tech-tac.github.io" />
<meta name="og:site_name" content="Tech-Tac" />
<meta name="title" content="Tech-Tac" />
<meta name="author" content="Tech-Tac" />
<meta name="description" content="My projects and how to contact me." />
<meta name="keywords" content="Tech-Tac, Personal Website, Website, Projects, Project Showcase, Cubes" />
<meta name="og:image" content="avatar.png" />
<meta name="og:image:type" content="image/png" />
<meta name="og:image:width" content="256" />
<meta name="og:image:height" content="256" />
<meta name="theme-color" content="#0088ff" />
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-120x120-precomposed.png" />
<link rel="apple-touch-icon" sizes="152x152" href="apple-touch-icon-152x152-precomposed.png" />
<title>Tech-Tac</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="avatar.png" type="image/png" />
</head>
<body>
<header id="header">
<input type="checkbox" id="theme-toggle" title="Toggle theme" />
<img src="avatar.png" alt="Avatar" height="128pt" width="128pt" />
<h1 style="margin-block: 0">I'm <span class="tech-tac">Tech-Tac</span>.</h1>
<p>An avid JavaScript enjoyer.</p>
<div class="button-group" id="contact">
<a href="mailto:im.tech.tac@gmail.com"><button class="email">E-mail</button></a>
<a href="https://github.com/Tech-Tac"><button class="github">GitHub</button></a>
<a href="https://discord.gg/TbyZ3wshWp"><button class="discord">Discord</button></a>
<a href="https://youtube.com/@Tech-Tac"><button class="youtube">YouTube</button></a>
</div>
<hr />
</header>
<main>
<h2 id="projects">My Projects</h2>
<div class="wrapper">
<section>
<img src="banners/logic_gates.png" alt="CarGame Screenshot" />
<h3>Logic Gates</h3>
<p>A little logic gate circuit simulator.</p>
<div class="button-group">
<a href="https://tech-tac.github.io/logic-gates"><button class="primary">▶ Try</button></a>
<a href="https://www.github.com/Tech-Tac/logic-gates" target="_blank"><button>Source</button></a>
</div>
</section>
<section>
<img src="banners/cargame.png" alt="CarGame Screenshot" />
<h3>CarGame</h3>
<p>A little retro car to drive around.</p>
<div class="button-group">
<a href="https://tech-tac.github.io/CarGame"><button class="primary">▶ Try</button></a>
<a href="https://www.github.com/Tech-Tac/CarGame" target="_blank"><button>Source</button></a>
</div>
</section>
<section>
<img src="banners/cubes.png" alt="Cubes Screenshot" />
<h3>Cubes</h3>
<p>2.5D voxel art game.</p>
<div class="button-group">
<a href="https://tech-tac.github.io/cubes"><button class="primary">▶ Try</button></a>
<a href="https://www.github.com/Tech-Tac/cubes" target="_blank"><button>Source</button></a>
</div>
</section>
<section>
<img src="banners/loading.png" alt="Loading... Screenshot" />
<h3>Loading...</h3>
<p>A Progressbar95 clone.</p>
<div class="button-group">
<a href="https://tech-tac.github.io/loading"><button class="primary">▶ Try</button></a>
<a href="https://www.github.com/Tech-Tac/loading" target="_blank"><button>Source</button></a>
</div>
</section>
<section>
<img src="banners/button.png" alt="Button Screenshot" />
<h3>Button</h3>
<p>Click as many buttons as possible!</p>
<div class="button-group">
<a href="https://tech-tac.github.io/button"><button class="primary">▶ Try</button></a>
<a href="https://www.github.com/Tech-Tac/button" target="_blank"><button>Source</button></a>
</div>
</section>
<section>
<img src="banners/coming_soon.png" alt="Coming Soon" />
<h3>More Coming Soon!</h3>
<p>Stay tuned for more!</p>
</section>
</div>
</main>
<footer>🟢 Existing since 2024</footer>
</body>
</html>