-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
192 lines (169 loc) · 5.55 KB
/
Copy pathabout.html
File metadata and controls
192 lines (169 loc) · 5.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About | Skybl0cker</title>
<link href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" rel="stylesheet">
<style>
body {
background-color: #2c2c2c;
color: #f0f0f0;
font-family: 'Courier New', Courier, monospace;
text-align: center;
margin: 0;
padding: 20px;
}
/* Add padding and style the cards */
.container {
padding: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.card {
background: #1e1e1e;
padding: 15px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
/* Ensure all images are 300x150 */
.card img {
width: 300px;
height: 150px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}
.card h3 {
margin-top: 10px;
font-size: 1.5rem;
}
.card p {
font-size: 1rem;
color: #bbbbbb;
}
/* Badge Styling */
.badges {
margin-top: 10px;
display: flex;
justify-content: center;
gap: 10px; /* Add space between badges */
flex-wrap: wrap; /* Ensure badges wrap to the next line on smaller screens */
}
.badge {
display: inline-block;
background-color: #444;
padding: 5px 10px;
border-radius: 12px;
font-size: 0.9rem;
color: #fff;
}
a {
color: #f0f0f0;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Navigation Styling */
nav {
text-align: left;
margin-bottom: 20px;
}
nav ul {
list-style: none;
display: flex;
gap: 15px;
}
nav ul li a {
color: #f0f0f0;
text-decoration: none;
font-weight: bold;
}
/* Logo Styling */
.logo {
width: 60px;
filter: grayscale(100%);
margin-right: 15px;
}
/* Responsive styling */
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<ul>
<li><a href="index.html">/home</a></li>
<li><a href="youtube.html">/youtube</a></li>
<li><a href="github.html">/github</a></li>
<li><a href="about.html">/about</a></li>
</ul>
</nav>
<!-- Main Content -->
<div class="container">
<h1>About Me</h1>
<!-- Cards Layout -->
<div class="card-grid">
<!-- Card 1: Coding Skills -->
<div class="card">
<img src="coding.jpg" alt="Coding Skills"> <!-- Replace with your image -->
<h3>College Student Hobbyist Coder</h3>
<p>I am a College student studying Computer Science passionate about coding and technology. I love exploring different programming languages and experimenting with new projects.</p>
<p>I have experience in:</p>
<div class="badges">
<span class="badge">Dart</span>
<span class="badge">Flutter</span>
<span class="badge">Java</span>
<span class="badge">JavaScript</span>
</div>
<p>I’m currently learning:</p>
<div class="badges">
<span class="badge">Python</span>
<span class="badge">C++</span>
<span class="badge">C#</span>
</div>
</div>
<!-- Card 2: Robotics Team -->
<div class="card">
<img src="robot.jpeg" alt="FRC Robotics Team"> <!-- Replace with your image -->
<h3>Team Co-Captain & Scouting Lead</h3>
<p>I am an Alumni of FRC 3824 where I was the Co-Captain and Scouting Lead for my school's robotics team, <strong>FRC 3824 - HVA RoHAWKtics</strong>. I lead the team's scouting efforts in competitions and mentor younger members.</p>
</div>
<!-- Card 3: Hobbies -->
<div class="card">
<img src="xbox.jpg" alt="Modded Original Xbox"> <!-- Replace with your image -->
<h3>My Hobbies & Interests</h3>
<p>In addition to coding and robotics, I enjoy working with technology in other ways. Some of my hobbies include:</p>
<ul>
<li>Console Modding</li>
<li>Restoring Vintage Computers</li>
<li>Collecting old and new technology</li>
</ul>
</div>
</div>
</div>
</body>
</html>