-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecademy.html
More file actions
74 lines (71 loc) · 3.43 KB
/
codecademy.html
File metadata and controls
74 lines (71 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ethan's Portfolio Site</title>
<meta charset="utf-8">
<meta name="author" content="Ethan Bokelberg">
<meta name="description" content="Site created for the Personal portfolio project">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- link css files here-->
<link rel="stylesheet" href="css/custom.css" type="text/css" media="screen">
</head>
<!-- begin body section-->
<body id="portfolio">
<!-- header -->
<header>
<h1>Ethan Bokelberg</h1>
</header>
<!-- navigation -->
<nav>
<a href="index.html">Home</a>
<a href="">Resume</a>
<a href="codecademy.html">Codecademy Project Portfolio</a>
<!-- add more pages -->
</nav>
<!-- main section -->
<main>
<article class="portfolio-container">
<section id="about-me">
<h2>About Me</h2>
<section id="about-grid">
<aside id="about-text">
<p>Hello there! My name is Ethan Bokelberg, and I am a recent graduate from the University of Vermont with a B.S. in
computer science. This site serves as a portfolio of the projects I will be creating for the Full Stack Engineer Career Path on Codecademy.</p>
<p>I am currently working my way through the Full Stack Engineer Career Path on Codecademy to help widen my skillset for searching for jobs.</p>
<a id="contact-link" href="contact.html">Contact Me</a>
</aside>
<img src="images/headshot.jpg" alt="picture of me">
</section>
</section>
<section id="projects">
<h2>Projects</h2>
<details class="project">
<summary class="project-name">
<h3><a href="/excursion/" target="_blank">Excursion Project</a></h3>
</summary>
<p class="project-desc"><img src="images/excursion.png"></p>
</details>
<details class="project">
<summary class="project-name">
<h3><a href="https://reminiscent-man.surge.sh/" target="_blank">Jamming React Project</a></h3>
</summary>
<p class="project-desc"><img src="images/jamming.png"></p>
</details>
<details class="project">
<summary class="project-name">
<h3>More to come!</h3>
</summary>
<p class="project-desc">add project description</p>
</details>
</section>
<section id="skills">
<h2>Skills</h2>
<p>HTML, CSS, PHP, Python, Java, C/C++, basic JavaScript, Git, UNIX, SQL</p>
</section>
</article>
</main>
<footer>
<p>Site made by Ethan Bokelberg</p>
</footer>
</body>
</html>