-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
71 lines (71 loc) · 3.05 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This page lists all of Vihaan Pundir's projects, such as eClient.">
<title>Work | Vihaan Pundir</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="img/pic.ico" type="image/x-icon" />
<script src="https://kit.fontawesome.com/e4807bb23d.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<a href="index.html"><img src="img/pic.png" width="50px" height="50px" class="sub"></img></a>
<a href="work.html" style="margin-left:65%;" class="sub2">Work</a>
<a href="about.html" class="sub2">About</a>
<i onclick="menu()" id="bars" class="fa-solid fa-bars fa-3x"></i>
</nav>
<div class="menu" id="menu">
<ul>
<li><a class='boi' href='work.html'>Work</a></li>
<li><a class='boi' href='about.html'>About</a></li>
</ul>
</div>
<center>
<div class="overall">
<div style="display: table-row">
<div class="first">
<h1 style="margin-left:20px;">eClient</h1>
<p class="text">A Minecraft Launcher written completely in Python.</p>
<a class="button" href="https://eclient.vpun215.tech/">See live</a>
<a href="https://github.com/v-pun215/eClient"><i class="fa-brands fa-github fa-xl"></i></a>
</div>
<div class="second">
<h1 style="margin-left:20px;">Downrinth</h1>
<p class="text">A Python module that can install Minecraft mods from Modrinth.</p>
<a class="button" href="https://pypi.org/project/downrinth/">See live</a>
<a href="https://github.com/v-pun215/Downrinth"><i class="fa-brands fa-github fa-xl"></i></a>
</div>
</div>
<div style="display: table-row">
<div class="third">
<h1 style="margin-left:20px;">eNotes</h1>
<p class="text">A web-based notepad that saves your work as you write.</p>
<a class="button" href="https://enotes.vpun215.tech/">See live</a>
<a href="https://github.com/v-pun215/eNotes"><i class="fa-brands fa-github fa-xl"></i></a>
</div>
<div class="fourth">
<h1 style="margin-left:20px;">eClient Online</h1>
<p class="text">Play Minecraft on the web. Based of off Eaglercraft.</p>
<a class="button" href="https://online.vpun215.tech/">See live</a>
<a href="https://github.com/v-pun215/eClient-Online"><i class="fa-brands fa-github fa-xl"></i></a>
</div>
</div>
</div>
</center>
<script>
function menu(){
let x = document.getElementById("menu");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
x.style.animation = "fadeOutAnimation ease 0.2s";
x.style.animationIterationCount = "1";
x.style.animationFillMode = "forwards";
}
}
</script>
</body>
</html>