-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutPage.html
More file actions
225 lines (199 loc) · 5.38 KB
/
AboutPage.html
File metadata and controls
225 lines (199 loc) · 5.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aiden Lang - About</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="../images/favicon.png">
<style>
body {
background-image: url('../images/starry.gif');
background-color: #000;
color: #fff;
font-family: "Press Start 2P", system-ui;
padding: 40px;
margin: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
position: relative;
}
.header {
text-align: center;
margin-bottom: 60px;
}
h1 {
font-size: 32px;
color: #a0e540;
animation: bounce 1.5s infinite;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
display: inline-block;
padding: 10px 20px;
border: 2px solid #a0e540;
border-radius: 10px;
}
@keyframes bounce {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.content {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.text {
width: 100%;
}
.text-box {
display: flex;
align-items: center;
justify-content: space-between;
background-color: rgb(40, 37, 37);
padding: 30px;
margin-bottom: 30px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(160, 229, 64, 0.3);
}
.text-box img {
width: 40%;
height: auto;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 0 20px rgba(160, 229, 64, 0.3);
margin-left: 30px;
}
.text-box .about-text {
width: 55%;
}
.about-text {
font-size: 19px;
line-height: 1.6;
text-align: left;
}
.skills {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 30px;
}
.skill {
background-color: #a0e540;
color: #000;
padding: 8px 16px;
border-radius: 5px;
font-size: 12px;
}
.back-link {
display: inline-block;
color: #fff;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
position: absolute;
top: 20px;
left: 20px;
}
.back-link:hover {
color: #a0e540;
}
.back-link:before {
content: "◀";
margin-right: 10px;
color: #a0e540;
}
@media screen and (max-width: 768px) {
.container {
padding: 20px;
}
.header {
margin-bottom: 30px;
}
h1 {
font-size: 24px;
}
.content {
flex-direction: column;
}
.text-box {
flex-direction: column;
align-items: flex-start;
}
.text-box img {
width: 100%;
margin-left: 0;
margin-top: 20px;
}
.text-box .about-text {
width: 100%;
}
.about-text {
font-size: 12px;
}
.skill {
font-size: 10px;
padding: 6px 12px;
}
.back-link {
top: 0px;
left: 0px;
font-size: 12px;
}
}
</style>
</head>
<body>
<div class="container">
<a href="index.html" class="back-link">Back to Home</a>
<header class="header">
<h1>About Me</h1>
</header>
<div class="content">
<div class="text">
<div class="text-box">
<div class="about-text">
<p>Hi there! I'm Aiden Lang, a second year Computer Science student at the University of Wisconsin.</p>
<p>I specialize in full-stack development and have a strong passion for building efficient and scalable server-side applications in Flask, React, and other widely-used frameworks. </p>
</div>
<img src="/../images/headshot1.jpg" alt="Image 1">
</div>
<div class="text-box">
<div class="about-text">
<p>I did not begin my Computer Science adventure until 16 years old, but have fallen in love with it since. My current interest lies in Machine Learning, where I am actively building skills in PyTorch and Tensorflow.</p>
<p>I also love dogs. Here's a pictue of my 1 year-old lab, Romeo.</p>
</div>
<img src="/../images/romeo.jpg" alt="Image 2">
</div>
<div class="text-box">
<div class="about-text">
<h2>Skills</h2>
<ul class="skills">
<li class="skill">React</li>
<li class="skill">Flask</li>
<li class="skill">PyTorch/Neural Networks</li>
<li class="skill">Firebase</li>
<li class="skill">Google Cloud</li>
<li class="skill">Data Manipulation (Python)</li>
<li class="skill">MongoDB</li>
<li class="skill">Tensorflow</li>
<li class="skill">HTML/CSS/Bootstrap</li>
<li class="skill">Docker</li>
<li class="skill">MySQL</li>
<li class="skill">C</li>
<li class="skill">Java</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>