-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (93 loc) · 2.9 KB
/
index.html
File metadata and controls
96 lines (93 loc) · 2.9 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GoldenPeel's Folder</title>
<link rel="icon" href="Folder.svg.png" type="image/x-icon" />
<style>
body {
font-family: Monaco, monospace;
background: #BFEC9C;
margin: 0;
padding: 0;
color: #595C56;
}
header {
background: #547525;
color: #F9F9F9;
padding: 20px 0;
text-align: center;
}
main {
padding: 20px;
max-width: 800px;
margin: auto;
}
section {
margin-bottom: 30px;
}
h2 {
color: #547525;
}
a {
color: #189BCC;
}
.project {
margin-bottom: 15px;
}
footer {
text-align: center;
padding: 15px;
background: #ddd;
margin-top: 40px;
}
</style>
</head>
<body>
<header>
<h1>Sean Ding</h1>
<p>Rising 11th Grade Student | Aspiring Programmer</p>
</header>
<main>
<section>
<h2>About Me</h2>
<p>Hello! I'm Sean Ding. I'm a high school student with a passion for programming, specializing in game design and robotics. I also have skills in cybersecurity, with considerable knowledge of the Linux terminal and cyberdefense protocols. In my free time, I enjoy playing around with and exploring applications of coding within IDEs such as CMU CS Academy and Roblox Studio. </p>
</section>
<section>
<h2>Projects</h2>
<div class="project">
<h3>2 Player Battle Simulator</h3>
<p>A little project I made to simulate the trend of 2 person games. Yellow Controls: A and D to move horizontally, W to jump, E to fire, Black Controls: Left Arrow and Right Arrow to move horizontally, Up Arrow to jump, Left Click to fire</p>
<iframe width="410" height="460"
src="https://academy.cs.cmu.edu/sharing/orangeMouse5679/embed">
</iframe>
</div>
<div class="project">
<h3>Project Title 2</h3>
<p>Short description of the project. <a href="https://github.com/yourusername/project2" target="_blank">View on GitHub</a></p>
</div>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Java</li>
<li>Lua</li>
<li>Python</li>
<li>HTML & CSS</li>
<li>Git & GitHub</li>
<li>Linux Terminal</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<p>Email: <a href="mailto:sean.shifan.ding@gmail.com">sean.shifan.ding@gmail.com</a></p>
<p>Phone: <a href="tel:4708344318">(470)-834-4318</a></p>
<p><a href="https://www.instagram.com/datoneguymaybe/">Instagram</a></p>
<p><a href="https://github.com/seankid">Github</a></p>
</section>
</main>
<footer>
<p>©2025 Sean Ding. All rights reserved. Unauthorized use or reproduction of any content on this website is prohibited without prior written permission. </p>
</footer>
</body>
</html>