-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (107 loc) · 4.75 KB
/
index.html
File metadata and controls
116 lines (107 loc) · 4.75 KB
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
<!DOCTYPE html>
<html>
<head>
<title>WinTweakers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
</head>
<body>
<!--Navbar-->
<nav class="stroke" data-aos="fade-down" data-aos-delay="300">
<ul>
<li><a href="./">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#projects">Projects</a></li>
</ul>
</nav>
<p class="title" data-aos="fade-up">WinTweakers</p>
<img src="./img/pfp.png" width="300" class="titleimg" data-aos="fade-up">
<p class="center" class="titleimg" data-aos="fade-up">Scroll Down</p>
<svg class="arrows" class="titleimg" data-aos="fade-up">
<path class="a1" d="M0 0 L30 32 L60 0"></path>
<path class="a2" d="M0 20 L30 52 L60 20"></path>
<path class="a3" d="M0 40 L30 72 L60 40"></path>
</svg>
<p id="split" />
<div class="container">
<p class="title" id="about" data-aos="fade-right">About Us</p>
<p data-aos="fade-right" style="text-align: center;"><br />We are a "group" of developers and hobbyists aiming to fix Windows 10/11 <del>and maybe make other things</del>.</p>
<div class="card" data-aos="fade-down" data-aos-delay="300">
<div class="pic-container">
<img class="pic" src="https://github.com/CallMeEchoCodes.png" alt="Profile Picture">
</div>
<div class="name">
<span>CallMeEcho</span>
</div>
<div class="title2">
<span>Developer</span>
</div>
<div class="description">
<p>I maintain stuff! <del>for about a month</del></p>
</div>
<div class="links">
<a href="https://github.com/CallMeEchoCodes" target="_blank" class="gh">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/imcallmeecho" target="_blank" class="twt">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
<div class="card" data-aos="fade-down" data-aos-delay="600">
<div class="pic-container">
<img class="pic" src="https://github.com/khanhmuy.png" alt="Profile Picture">
</div>
<div class="name">
<span>Hmuy</span>
</div>
<div class="title2">
<span>""Developer""</span>
</div>
<div class="description">
<p><del>i make bodges</del></p>
</div>
<div class="links">
<a href="https://github.com/khanhmuy" target="_blank" class="gh">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/hmuy0608" target="_blank" class="twt">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
<p id="split" />
<div class="container">
<p class="title" id="projects" data-aos="fade-right">Projects</p>
<div class="card"data-aos="fade-down" data-aos-delay="300">
<div class="pic-container">
<img class="pic" src="./img/windowstoolbox.png" alt="">
</div>
<div class="name">
<span>Windows Toolbox</span>
</div>
<div class="title2">
<span>Tool</span>
</div>
<div class="description">
<p>A powerful but simple, easy to use toolbox for Windows 10 / 11.</p>
</div>
<div class="links">
<a href="https://github.com/WinTweakers/WindowsToolbox" target="_blank" class="gh">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<br><br>
<div class="footer">
<a href="contact.html" style="color: #3d77c2;">Contact Us</a> | <a href="privacy.html" style="color: #3d77c2;">Privacy Policy</a>
</div>
<br></br>
<!--AOS-->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>AOS.init()</script>
</body>
</html>