-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (75 loc) · 3.2 KB
/
index.html
File metadata and controls
78 lines (75 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en" data-arp-injected="true">
<head>
<meta charset="UTF-8">
<title>Home | Common-Codes</title>
<meta property="og:title" content="Common-Codes">
<meta name="description" content="Home | Common-Codes">
<meta property="og:description" content="Landing | Common-Codes">
<meta property="og:site_name" content="Common-Codes">
<link rel="icon" type="image/png" href="https://cdn.discordapp.com/attachments/928866298312671273/929016288813129729/unknownf-picsay.png">
<link rel="stylesheet" href="styles.css" media="all">
<script src="https://kit.fontawesome.com/ab04ed72d4.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="nav">
<nav>
<ul>
<li class="navstd"><a href="/">Home</a></li>
<li class="navimg">
<a href="https://discord.gg/vncq8kF5hj" target="_blank">
<i class="fab fa-discord" aria-hidden="true"></i>
</a>
</li>
<li class="navimg">
<a href="https://ko-fi.com/commoncodes">
<img class="fab fa-kofi" style="width: 39px; height: 34px;" src="https://storage.ko-fi.com/cdn/brandasset/kofi_s_logo_nolabel.png" aria-hidden="true"></img>
</a>
<li class="navimg">
<a href="https://patreon.com/V1RU5">
<i class="fab fa-patreon" aria-hidden="true"></i>
</a>
</li>
<li class="navstd">
<a href="/projects">Projects</a>
</li>
<li class="navimg">
<a href="https://github.com/Common-Codes" target="_blank">
<i class="fab fa-github" aria-hidden="true"></i>
</a>
</li>
</ul>
</nav>
</div>
<div class="content">
<div class="logososo">
<h1>Common-Codes</h1>
<h3>For the Most Common of Codes :\</h3>
<progress id="progresss" min="1" max="100"></progress>
</div>
<br>
<div style="text-align: left;">
<h2>About</h2>
<p style="font-size: 14px; font-weight: 400;">We are Common-Codes; probably the <i>weirdest</i> team of developers in the world.</p>
<p style="font-size: 14px; font-weight: 400;">We make code held together with cheap, low-quality tape.</p>
<p style="font-size: 14px; font-weight: 400;">And it doesn't usually stay stuck together.</p>
<br>
<h2>What we do</h2>
<p>We create... absolutely <i>nothing</i> unique, new or well... different...</p>
<p>Head over to our <a style="color: aquamarine;" href="/projects/">projects page</a> to find out what we've made!</p>
</div>
</div>
<script type="text/javascript">
var k = 0;
var progb = document.getElementById("progresss");
function count(){
if(k < 100){
k = k + 1;
progb.value = k;
}
setTimeout("count()", 120);
}
count();
</script>
</body>
</html>