-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
83 lines (66 loc) · 3.21 KB
/
portfolio.html
File metadata and controls
83 lines (66 loc) · 3.21 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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ross Zeiger's Portfolio</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- "Cover" template -->
<link href="templates/cover.css" rel="stylesheet">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body class="d-flex h-100 text-center text-white bg-dark">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<nav class="nav nav-masthead justify-content-center float-md-end">
<img class="ross" src="resources/20210627_151725.jpg" alt="Ross Zeiger">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link active" aria-current="page" href="#">Portfolio</a>
<a class="nav-link" href="contact.html">Contact</a>
</nav>
</div>
</header>
<br>
<p>Ross is a current student of PDX Code Guild in Portland, Oregon. He will be graduating from the course on August 27, 2021.</p>
<p>Relocating to Austin, Texas in September 2021.</p>
<p>Competencies: Python, JavaScript, HTML, CSS, Vue.JS, Django, Git, command line, Mac/Windows/Linux OS</p>
<p>Certifications: <a href='https://coursera.org/share/68078a05b12c60513cfb12e7a3c4b2a7'>Google IT Support Professional</a></p>
<p>Education: B.A. in History from University of Washington</p>
<!-- INPUT PROJECTS HERE -->
<section class="projects">
<div class="proj1">
<p><a href="https://github.com/ross-code/pupdates">Pupdates: Dog Adoption Software</a></p>
</div>
<div class="proj2">
<p><a href="https://github.com/ross-code/KindleHighlightAggregator">Kindle Highlight Aggregator</a></p>
</div>
<div class="proj3">
<p><a href="https://github.com/ross-code/citymatchtool">City Match Tool</a></p>
</div>
<div class="proj4">
<p><a href="https://github.com/ross-code">Ross' Git Hub</a></p>
</div>
</section>
<footer class="mt-auto text-white-50">
<p>Ross Zeiger's Portfolio</p>
</footer>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>