-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
main { | ||
height: 460px; | ||
} | ||
|
||
#image, nav { | ||
height: 482px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |