forked from Divij-Agarwal-42/duckmath.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
148 lines (110 loc) · 4.38 KB
/
about.html
File metadata and controls
148 lines (110 loc) · 4.38 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1533872335883359"
crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-63K8BHHS38"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-63K8BHHS38');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="DuckMath">
<meta name="description" content="About our site">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<title>DuckMath</title>
<link rel="stylesheet" href="assets/css/text_styles.css">
<link rel="stylesheet" href="assets/css/topnav.css">
<link rel="stylesheet" href="assets/css/main.css">
<script src="assets/js/main.js"></script>
<link rel="icon" type="image/x-icon" href="assets/img/duck.png">
<link rel="mask-icon" type="" href="assets/img/duck.png" color="#111">
<noscript>Your browser doesn't have JavaScript enabled. Please enable JavaScript or switch to a browser that
supports it.</noscript>
<script src="assets/js/index.js" type="text/javascript" defer></script>
<style>
.parentBox {
width: 80%;
height: 80%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
gap: 2%;
font-family: arial;
font-size: 18px;
font-weight: 500;
}
.box {
background-color: #1310105f;
border-radius: 25px;
padding: 15px;
border: solid 3px grey;
}
.box1 {
grid-area: 1 / 2 / 2 / 5;
}
.box2 {
grid-area: 2 / 3 / 5 / 5;
}
.box3 {
grid-area: 2 / 1 / 5 / 3;
}
p {
text-align: center;
}
.img1 {
border-radius: 25px;
}
.paypalLink {
background-color: #08333e5f;
border-radius: 10px;
}
.paypalLink:hover {
background-color: #13738ac0;
}
.githubLink {
background-color: white;
border-radius: 60px;
border: white 2px solid;
width: 100px;
height: 100px;
}
.githubLink:hover {
background-color: grey;
border: solid 2px grey;
}
</style>
</head>
<body>
<br><br>
<div class = "parentBox">
<div class = "box4">
<a href="./about.html"><img class = "img1" src="assets/img/google-cert-12k.webp" alt="Google Search Award" width = "280px" height = "370px"></a>
</div>
<div class = "box box1">
<p>Anyway I'm Maddox, I'm 18, been coding for 3 years now and am now going to purdue for computer science.<br>I hope you guys enjoy this site, this was my first large scale project. Love you guys!</p>
<p>Go to my GitHub to contact me if needed.</p>
</div>
<div class = "box box2">
<h1 style="text-align: center">Thank you's</h1>
<p><a href="https://www.instagram.com/parada.joseph/" target="_blank" style="color: #0000EE; font-weight: bold">Joe</a> for advertising and support!</p>
<p><a href="https://github.com/Divij-Agarwal-42" target="_blank" style="color: #0000EE; font-weight: bold">Divij</a> for front end.</p>
<p><a href = "https://github.com/maddox05" style="text-align: center"><img style="text-align: center" class = "githubLink" src = "assets/img/github_logo.png" alt="GitHub"></a></p>
</div>
<div class = "box box3">
<p>If you've enjoyed using our site and want to help us keep improving it, please consider making a donation<br>
<a href="https://www.paypal.com/paypalme/maddoxpublic" target="_blank"><img class = "paypalLink" src = "assets/img/paypal_icon.png" width="80px" height = "80px" alt="Paypal Donate Link">
</a></p>
</div>
</div>
</body>
</html>