Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tigers - Paje B #121

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added assets/headshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 36 additions & 2 deletions pages/about.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,46 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>About Paje</title>
<link href="styles/styles.css" rel="stylesheet">
</head>
<body>

<header id="page-top">
<h1>Pajeunique Bishop</h1>
<nav>
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
</header>

<body class="about-body">
<section class="about">
<p>
<h3>Prior Work Experience</h3>
I worked as a project coordinator at a tech startup in healthcare before
becoming a student at Ada Developer Academy. While in my prior position, I helped lead implementations, track deadlines, and prioritize team goals.
</p>
<p>
<h3>Hobbies</h3>
In my free time, you can find me writing short stories,
rock climbing with friends, or shopping for vintage clothes.
</p>
</section>

</body>

<footer>
&copy; 2022
</footer>

</html>
36 changes: 36 additions & 0 deletions pages/home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paje Bishop Home Page</title>
<link href="styles/styles.css" rel="stylesheet">
</head>

<header id="page-top">
<h1>Pajeunique Bishop</h1>
<nav>
<ul>
<li>
<a href="about.html">About Me</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
</header>

<body class="index-body">
<section>
My name is Paje, and
I am currently a student at the Ada Developer Academy. Look through this website to learn a little bit more about me!
</section>
</body>

<footer>
<h4> &copy; 2022</h4>
</footer>
</html>
12 changes: 0 additions & 12 deletions pages/index.html

This file was deleted.

85 changes: 82 additions & 3 deletions pages/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,88 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Paje's Portfolio</title>
<link href="styles/styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Monda:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>


<header id="page-top">
<h1>Paje's Portfolio</h1>
<nav>
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="about.html">About Me</a>
</li>
</ul>
</nav>
</header>


<body class="port-body">
<section id="Past-Projects" class="portfolio">
<h3>Past Projects</h3>
<ul>
<li>
<a href="https://github.com/Paje-Bishop/task-list-api">Task List API</a>
</li>
<li>
<a href="https://github.com/Paje-Bishop/hello-books-api">Hello Books API</a>
</li>
<li>
<a href="https://github.com/Paje-Bishop/viewing-party">Viewing Party</a>
</li>
<li>
<a href="https://github.com/Paje-Bishop/swap-meet">Swap Meet</a>
</li>
<li>
<a href="https://github.com/Paje-Bishop/solar-system-api">Solar System API</a>
</li>
</ul>
</section>
<section id="technologies" class="portfolio">
Acquired basic familiarity with the following programming languages and frameworks:
<ul>
<li>
Python
</li>
<li>
Flask
</li>
<li>
SQL
</li>
<li>
HTML
</li>
<li>
CSS
</li>
<li>
Javascript
</li>
</ul>
Acquired experience with the following developer tools:
<ul>
<li>
Git
</li>
<li>
Github
</li>
<li>
VScode
</li>
<li>
Postman
</li>
</ul>
</section>
</body>

<footer>
&copy; 2022
</footer>
</html>
108 changes: 108 additions & 0 deletions pages/styles/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
#page-top {
background-color: white;
text-align: center;
margin: auto;
position: fixed;
width: 100%;
height: 20%;
min-height: 150px;
top: 0;
display:flex
}

section.about {
padding-left: 20%;
padding-right: 20%;
padding-top: 10%;
}

section.portfolio ul {
list-style-type: none;
}

section {
align-content: center;
text-align: center;
font-size: 150%;
background-color:brown;
color:white;
padding: 15%;
}

#Past-Projects {
/* padding-bottom: 0%; */
}

#technologies {
padding-top: 0;
}
section a:visited {
color: white
}

h1, h2, h3, h4, h5 {
font-size: 3em;
text-align: center;
font-family: "Noto Sans", sans-serif;
}

body {
display:grid;
/* grid-template-rows: 50% 85%; */
grid-auto-rows: auto;
}

nav {
width: 80%;
margin: 0 auto;
background: #fff;
padding: 50px 0;
}

nav ul {
list-style: none;
text-align: center;
}

nav ul li {
display: inline-block;
}

nav ul li a {
display: block;
padding: 15px;
text-decoration: none;
color: #aaa;
font-weight: 800;
text-transform: uppercase;
margin: 0 10px;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
transition: all .5s;
}

nav ul li a:hover {
color: #555;
}

nav.stroke ul li a,
nav.fill ul li a {
position: relative;
}

nav.stroke ul li a:after,
nav.fill ul li a:after {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 0%;
content: '.';
color: transparent;
background: #aaa;
height: 1px;
}
Loading