-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (111 loc) · 3.56 KB
/
index.html
File metadata and controls
118 lines (111 loc) · 3.56 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
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hirako's Code</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--favicon-->
<link
rel="icon"
type="image/png"
sizes="192x192"
href="https://i.imgur.com/5vxObAl.jpeg"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://i.imgur.com/5vxObAl.jpeg"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="https://i.imgur.com/5vxObAl.jpeg"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://i.imgur.com/5vxObAl.jpeg"
/>
<link rel="manifest" href="/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />
<!-- import the webpage's stylesheet -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.0-beta/css/bootstrap-select.min.css"
/>
<link rel="stylesheet" href="/style.css" />
<!-- Global site tag (gtag.js) - Google Analytics | I like stats for fun -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-123607375-3"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-123607375-3");
</script>
</head>
<body>
<div class="center">
<div class="cardd">
<div class="container">
<!--<div style="background-image: url("https://www.pinclipart.com/picdir/middle/353-3538946_hen-tie-gif-by-jomunnafuda-dbe6oxr-hen-tie.png")">-->
<h1>hirako's Code</h1>
<strong style="color: rgba(0, 0, 0, 0.7); font-style: italic">
The numbers mason, what do they mean?
</strong>
<div id="divOuter">
<div id="divInner">
<input id="partitioned" type="number" />
<button
id="clear"
type="button"
class="btn btn-outline-secondary col"
>
Clear
</button>
</div>
</div>
<hr />
<button
id="sauce"
type="button"
class="btn btn-outline-primary disabled col"
>
Find Muh Sauce
</button>
<button id="random" type="button" class="btn btn-danger col">
Feeling Lucky?
</button>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div
class="glitchButton"
style="position: fixed; top: 20px; right: 20px"
></div>
<script src="https://button.glitch.me/button.js"></script>
<script src="/script.js" defer></script>
</div>
</div>
</div>
</body>
<footer>
<p>By Hirakoisnumb (2019)</p>
<p>Oct 2024: Wait, why do people still use this site?! (╯°□°)╯︵ ┻━┻</p>
<p>Also, Merry Christmas to whoever's reading this! ⋆͛*͛🎄(ㆆᴗㆆ)*✲゚*。⋆,</p>
</footer>
</html>