-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (99 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
117 lines (99 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Michael Pachowski</title>
<title>2nd Year Computer Science Student At Western University</title>
<!-- Smooth Scroll -->
<style>
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
background: linear-gradient(-45deg, #1d2b64, #f8cdda, #4facfe, #00f2fe);
background-size: 400% 400%;
animation: gradientMove 15s ease infinite;
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
header {
text-align: center;
padding: 4rem 2rem 2rem;
}
header h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
header img {
width: 200px;
border-radius: 50%;
border: 4px solid white;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
margin-top: 1rem;
}
main {
padding: 3rem 2rem;
max-width: 800px;
margin: auto;
text-align: center;
}
section {
margin-bottom: 5rem;
}
h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
}
</style>
</head>
<body>
<header>
<h1>Michael Pachowski</h1>
<img src="linkedin.png" alt="A photo of Michael">
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hi! I'm Michael Pachowski. Im A Current 2nd Year Computer Science Honours Specialization Student At Western University.
I Have Experience In HTML, CSS, JavaScript, SQL, Python, Java, C, C++.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Virtual Pet Game</p>
<img src="petgame.png" alt="A photo of Petgame Project"
style="display: block; margin: 2rem auto; width: 60%; max-width: 500px; border-radius: 12px;">
<p>Made In Java, with the GUI being made with Java Swing, this virtual pet game allows the player to start a new game and choose a pet
Also allows a player to save game, and choose from their saved games. Parental controls are also implemented to cap the players playing time</p>
</section>
<h2>Relevant Courses</h2>
<p>Math 1600 - Linear Algebra I</p>
<p>CS 1027 - Computer Science Fundamentals II</p>
<p>CS 2210 - Data Structures And Algorithms</p>
<p>CS 2211 - Software Tools and System Programming</p>
<p>CS 2212 - Introduction To Software Engineering
<p>CS 3319 - Introduction To Databases</p>
<br>
<br>
<section id="contact">
<h2>Contact</h2>
<p>Find me on LinkedIn or shoot me an email to connect!</p>
<p>
<a href="https://www.linkedin.com/in/michael-pachowski-119b96300/" target="_blank">
https://www.linkedin.com/in/michael-pachowski-119b96300/
</a>
</p>
<p>michaelpachowski1@gmail.com</p>
</section>
</main>
</body>
</html>