Skip to content

Commit

Permalink
Volunteering section added #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanzigzan committed Mar 18, 2024
1 parent 785c5a6 commit 276e660
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
7 changes: 7 additions & 0 deletions css/volunteering.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
main {
height: 460px;
}

#image, nav {
height: 482px;
}
Binary file added images/man.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions volunteering.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Volunteering - Pawel Michalski</title>
<meta name="description" content="Pawel Michalski's resume website">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/volunteering.css" type="text/css">

<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
</head>

<body>
<div id="wrapper">
<header>
<h1><a href="index.html">Volunteering</a></h1>
</header>

<div id="content">
<div id="image">
<img src="images/man.png" alt="man">
</div>

<main>
<h1>CPSC Club</h1>
<p>I am part of the CPSC Langara Computer Science Club. As a tech lead, I have taken on the
responsibility of organizing Tech Thursdays, a series of events where participants work
collaboratively to create projects from scratch. In this role, I assist fellow students in forming
teams, generating ideas through brainstorming sessions, and guiding them through the process of
implementing their projects.</p>

<br><br>

<p>Take a look at our:</p>
<p><a href="https://langaracs.tech/">Website</a></p>
<p><a href="https://www.instagram.com/langaracpsc/">Instagram</a></p>
<p><a href="https://github.com/langaracpsc/">Github</a></p>
<p><a href="https://www.linkedin.com/company/langaracpsc/">LinkedIn</a></p>
<p>And don't forget to join our <a href="https://discord.com/invite/langara-computer-science-club-753037165050593300">Discord</a></p>
</main>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="volunteering.html">Volunteering</a></li>
</ul>
</nav>

</div>
<footer>
<p>Made by Pawel Michalski * Student id: 100390068 * Email: <a
href="mailto:[email protected]">[email protected]</a></p>
</footer>
</div>
</body>

</html>

0 comments on commit 276e660

Please sign in to comment.