-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (117 loc) · 3.81 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QUAKTECH</title>
<link rel="icon" href="Images/QUAKTECH.png" type="image/png">
<style>
html, body {
height: 100%;
margin: 0;
background-color: black;
color: white;
font: 16px monospace, monospace;
}
.centered-div {
display: flex;
justify-content: center;
align-items: flex-start;
padding: 20px;
box-sizing: border-box;
min-height: 100vh;
}
#content {
text-align: left;
max-width: 800px;
width: 100%;
padding: 20px;
box-sizing: border-box;
background-color: black;
color: white;
overflow: auto;
}
h1 {
color: white;
font-size: 2em;
margin: 0;
padding: 0;
}
pre {
background-color: black;
color: white;
margin: 0;
padding: 20px;
overflow: auto;
}
hr {
border: 1px solid white;
margin: 10px 0;
}
a {
color: lightblue;
}
</style>
</head>
<body>
<div class="centered-div">
<div id="content">
<h1><span style="cursor: pointer; text-decoration: none;" onclick="openLink('https://github.com/QUAKTECH')">QUAKTECH</span></h1>
<hr>
<p>QUAKTECH <a href="Projects.html">Projects</a></p>
<pre>
=======================================
=======================================
=======================================
=======================================
========#######################========
========#######################========
========#######################========
========#######################========
========########=======########========
========########=======########========
========########=======########========
========########=======########========
========########=======########========
========###############================
========###############================
========###############================
========###############================
=======================================
=======================================
=======================================
=======================================
Overview
________________________________________________________________________________
QUAKTECH is a small organization based on collaborative work to make
cool, useful, dumb but fun software. We are fully remote and open source.
Devs & Collaborators
________________________________________________________________________________
* <em>AeternusDio</em> - <a href="https://github.com/AeternusDio">GitHub</a>
* <em>Cupboardmanufracturer</em> - <a href="https://github.com/Cupboardmanufracturer">Github</a>
* <em>Sbx7</em> - <a href="https://github.com/sbx7">Github</a>
Contact
________________________________________________________________________________
* longnecklion126@gmail.com
* sbx7@purelymail.com
FUQ - Frequently unasked questions
________________________________________________________________________________
* Why?
Awnser : ¯\_(ツ)_/¯
* How?
Awnser : Tf u mean how? you just do it idiot.
* Why is it called QUAKTECH?
Awnser : Because QAUK is for like ducks cuz programmers use ducks to
debug thier garbage code (only ours) and TECH because..well..tech.
________________________________________________________________________________
© 2024 QUAKTECH
</pre>
</div>
</div>
<script>
function openLink(url) {
window.open(url, '_blank');
}
</script>
</body>
</html>