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

Cedar-Bailey #75

Open
wants to merge 7 commits 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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Congratulations! You're submitting your assignment!
## Comprehension Questions
Question | Answer
:------------- | :-------------
Did you have to resolve any issues when running the HTML Validator? If so, what were they? |
Why is it important to consider and use semantic HTML? |
How did you decide to structure your CSS? |
What was the most challenging piece of this assignment? |
Describe one area that you gained more clarity on when completing this assignment |
Did you have to resolve any issues when running the HTML Validator? If so, what were they? | Yes, on my portfolio page the validator suggested that I add a header tag under the section tag.
Why is it important to consider and use semantic HTML? | To make your web page as accessible as possible. The overall concept of that makes sense, but I am worried I wasn't able to do that effectively.
How did you decide to structure your CSS? | A separate CSS file for each page, contained in a styles folder.
What was the most challenging piece of this assignment? | Honestly it was really difficult to just come up with idea of how I wanted my website to look.
Describe one area that you gained more clarity on when completing this assignment | EVERYTHING, I don't feel particularly comfortable with HTML/CSS so this was a nice learning opportunity and I hope that I can push myself further on the next frontend project.
**Optional** |
Did you deploy to GitHub Pages? If so, what is the URL to your website? |
Did you deploy to GitHub Pages? If so, what is the URL to your website? | No I did not.
Binary file added images/AboutBG.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/IndexBG.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/PortfolioBG.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 40 additions & 1 deletion pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,48 @@
<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 Me</title>
<link href="../styles/about-style.css" rel="stylesheet">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can actually import multiple stylesheets so you could have one that had all your shared styles and then a separate one per page (you mentioned wanting to DRY up your CSS):

Suggested change
<link href="../styles/about-style.css" rel="stylesheet">
<link href="../styles/common-style.css" rel="stylesheet">
<link href="../styles/about-style.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=Poppins:wght@100;200;300;500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="site-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Projects</a></li>
</ul>
</nav>

</header>

<section class="about-me">
<h1>About me</h1>
<p class='bio'>I am a current student at Ada Developer's Academy, currently expected to graduate in July 2022. I love math, programming, and cats!</p>
<div class="tech-info">
<h2>Tech Stack</h2>
<div class="tech-list">
<ul>
<li>Python</li>
<li>Flask</li>
<li>SQL</li>
<li>JavaScript</li>
<li>ReactJS</li>
</ul>
</div>
</div>
</section>

<footer>
<div class="socials">
<a href="https://github.com/beaniebaye" class="social">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
</a>
</div>
<p>&copy; 2021 Bailey Holderman</p>
</footer>

</body>
</html>
31 changes: 30 additions & 1 deletion pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,38 @@
<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>Main page</title>
<link href="../styles/index-style.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=Poppins:wght@100;200;500&display=swap" rel="stylesheet">

</head>
<body>
<header>
<nav class="site-links">
<ul>
<li><a href="about.html">About me</a></li>
<li><a href="portfolio.html">Projects</a></li>
</ul>
</nav>
<div class="hero-section">
<div class='hero-text'>
<h1>Bailey Holderman</h1>
<p>Full Stack Developer....In training</p>
</div>
</div>


</header>

<footer>
<div class="socials">
<a href="https://github.com/beaniebaye" class="social">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
</a>
</div>
<p class=>&copy; 2021 Bailey Holderman</p>
</footer>
</body>
</html>
49 changes: 48 additions & 1 deletion pages/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,56 @@
<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>Portfolio</title>
<link href="../styles/portfolio-style.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=Poppins:wght@100;200;300;500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="site-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</nav>
</header>

<section class="container">
<h1>Projects</h1>
<article>
<h2><a href="https://github.com/beaniebaye/viewing-party">Viewing Party</a></h2>
<p>First official python project! Practiced writing functions, introductory problem solving, nested data structures and test driven development.</p>
</article>
<article>
<h2><a href="https://github.com/beaniebaye/adagrams-py">Adagrams</a></h2>
<h3>In Collaboration with <a href="https://github.com/jacyyang04" class="partner">Jacy Yang</a></h3>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably just be a styled paragraph, not a <h3>. The reason is because you wouldn't want to put In Collaboration with... as an entry in your table of contents:

Suggested change
<h3>In Collaboration with <a href="https://github.com/jacyyang04" class="partner">Jacy Yang</a></h3>
<p class="collaboration-note">In Collaboration with <a href="https://github.com/jacyyang04" class="partner">Jacy Yang</a></p>

<p>First paired programming project! Also done in python. Practiced function fundamentals, test driven development and play testing.</p>
</article>
<article>
<h2><a href="https://github.com/beaniebaye/swap-meet">Swap Meet</a></h2>
<p>Practiced defining classes, class methods and creating instances of my created classes. Continued to follow a test driven development workflow and was able to complete the optional enhancements.</p>
</article>
<article>
<h2><a href="https://github.com/beaniebaye/task-list-api">Task List</a></h2>
<p>A web API that keeps track of your tasks and can interact with Slack! Practiced creating a RESTful API and CRUD routes. Also created models that interacted with a database.</p>
</article>
<article>
<h2><a href="https://github.com/MiffyBruna/retro-video-store">Retro Video Store</a></h2>
<h3>In Collaboration with <a href="https://github.com/MiffyBruna" class="partner">Citlalli Zarate</a></h3>
<p>A web API for a retro video store! Created a RESTful API, CRUD routes and created custom endpoints. Had time to attempt all of the optional enhancements </p>
</article>
</section>

<footer>
<div class="socials">
<a href="https://github.com/beaniebaye" class="social">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
</a>
</div>
<p>&copy; 2021 Bailey Holderman</p>
</footer>

</body>
</html>
99 changes: 99 additions & 0 deletions styles/about-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
.bio {
font-weight: 200;
font-size: 30px;
}

.bio, .tech-info {
font-weight: 300;
background-color: rgba(211, 215, 216, 0.75);
}

body {
font-family: 'Poppins', sans-serif;
}

footer {
background-color: rgba(211, 215, 216);
height: 150px;
}

footer p {
display: flex;
flex-direction: row;
justify-content: center;
}

footer .socials {
display: flex;
flex-direction: row;
justify-content: center;
padding-top: 10px;
}

h1 {
font-size: 90px;
margin: 0;
}

h1, .bio, .tech-info {
padding: 30px;
}

header {
background-color: rgb(2, 2, 15);
color: rgba(211, 215, 216);
font-size: 40px;

}

li {
width: 250px;
text-decoration: none;
}

nav {
display: flex;
justify-content: flex-end;
}

nav li a {
color: rgba(211, 215, 216);
text-decoration: none;
}

nav li a:hover {
color: gray;
transition: all 1s ease-out;
text-decoration: none;
}

p {
font-weight: 200;
}

section {
display: flex;
flex-direction: column;
height: 100vh;
background-image: url("../images/AboutBG.JPG");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
color: rgb(23, 60, 104);
}

.site-links ul {
display: flex;
list-style-type: none;
}

.social {
margin: 10px;
}

.tech-info {
display: flex;
flex-direction: column;
height: 250px;
justify-content: center;
}
94 changes: 94 additions & 0 deletions styles/index-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
a:hover {
color: rgb(92, 93, 95);
transition: all 1s ease-out;
text-decoration: none;
}

body {
font-family: 'Poppins', sans-serif;
}

footer {
background-color: rgba(211, 215, 216);
height: 150px;
}

footer p {
display: flex;
flex-direction: row;
justify-content: center;
}

footer .socials {
display: flex;
flex-direction: row;
justify-content: center;
padding-top: 10px;
}

h1 {
font-size: 90px;
margin: 0;
}

header {
height: 100vh;
color: rgba(211, 215, 216);
font-size: 40px;
background-image: url("../images/IndexBG.JPG");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}

header nav {
background-color: rgb(2, 2, 15);
}

.hero-text {
margin-left: 40px;
margin-bottom: 200px;
}

.hero-text h1 {
font-weight: 700;
}

.hero-text p {
font-weight: 200;
}

.hero-section {
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
}

li {
width: 250px;
text-decoration: none;
}

nav {
display: flex;
justify-content: flex-end;
}

nav li a {
color: rgba(211, 215, 216);
text-decoration: none;
}

p {
font-weight: 200;
}

.site-links ul {
display: flex;
list-style-type: none;
}

.social {
margin: 10px;
}
Loading