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

Lesson20 initial pull request #383

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1dcc0c5
feat: added CsvDataloader class and implemented LibraryCsvDataLoader
javyW Mar 26, 2024
ff5fca5
feat: deleted CsvDataloader.java because on main branch
javyW Mar 26, 2024
6d23940
Merge branch 'code-differently:main' into main
javyW Mar 26, 2024
3230095
Merge branch 'code-differently:main' into main
javyW Mar 27, 2024
f29e875
Merge branch 'code-differently:main' into main
javyW Mar 28, 2024
9235b91
Merge branch 'code-differently:main' into main
javyW Mar 29, 2024
f57b20e
Merge branch 'code-differently:main' into main
javyW Mar 29, 2024
c20b217
Merge branch 'code-differently:main' into main
javyW Apr 1, 2024
d4c2534
Merge branch 'code-differently:main' into main
javyW Apr 1, 2024
08e8973
Merge branch 'code-differently:main' into main
javyW Apr 2, 2024
8e8ddef
Merge branch 'code-differently:main' into main
javyW Apr 2, 2024
4673747
Merge branch 'code-differently:main' into main
javyW Apr 3, 2024
273f53d
Merge branch 'code-differently:main' into main
javyW Apr 3, 2024
314dfe9
Merge branch 'code-differently:main' into main
javyW Apr 5, 2024
1fc9915
Merge branch 'code-differently:main' into main
javyW Apr 10, 2024
0de79ba
Merge branch 'code-differently:main' into main
javyW Apr 12, 2024
daeb5bd
feat: added javyen_template_copy to the lesson 20 folder
javyW Apr 12, 2024
ef1d2cb
feat: added margin, padding and font-family, or html and body
javyW Apr 12, 2024
0ecdfb5
feat: added body, header, and header-logo styling
javyW Apr 15, 2024
0316eba
feat: footer is centered
javyW Apr 15, 2024
2c79a2c
feat: added formatting for img and header-logo
javyW Apr 15, 2024
83b0d97
fix: deleted the empty a and p tags
javyW Apr 15, 2024
9a2a81f
Merge branch 'code-differently:main' into lesson20
javyW Apr 16, 2024
86ae366
feat: formating header-top-menu and sign up button
javyW Apr 16, 2024
1582a3b
Merge branch 'lesson20' of https://github.com/javyW/code-differently-…
javyW Apr 16, 2024
692e0fe
feat: addings stylings
javyW Apr 17, 2024
9bba8d4
fix: adjusting margin for programs section
javyW Apr 17, 2024
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
Binary file added lesson_20/Javyen_template_copy/hero.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions lesson_20/Javyen_template_copy/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<html>
<head>
<title>Homepage</title>
<link rel="stylesheet" id="redux-google-fonts-salient_redux-css" href="https://fonts.googleapis.com/css?family=Poppins%3A600%2C400%7CMontserrat%3A800%2C900%2C700&amp;ver=1597678827" type="text/css" media="all">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Poppins%3A600%2C400%7CMontserrat%3A800%2C900%2C700&#038;ver=1597678827' type='text/css' media='all' />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header class="header">
<div class="header-logo">
<a href="index.html">
<img src="logo.png" alt="Code Differently Logo" />
</a>
</div>
<ul class="header-top-menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="header-cta">
<a class="sign-up-button" href="#">Sign Up</a>
</div>
</header>
<div class="main">
<div class="content">
<article>
<section class="hero-section">
<div class="hero-overlay"></div>
<div class="hero-content">
<h2 class="hero-title">Together we can move the needle of <em class="highlight">diversity in tech.</em></h2>
<div class="hero-text"><span>Code Differently</span> provides hands on training and education through coding classes that gives participants the technical and cognitive skills they need to excel in technology-driven workplaces.</div>
</div>
</section>
<section class="programs-section">
<h2>Our <em class="highlight">Programs</em></h2>
<ul class="programs">
<li class="program">
<h3>1000 Kids Coding</h3>
<p>The Code Differently 1000 Kids Coding program was created to expose New Castle County students to computing and programming. The 1000 Kids Coding courses are designed for all experience levels, no experience required.</p>
</li>
<li class="program">
<h3>Return Ready</h3>
<p>The Code Differently Workforce Training Initiatives were created to help individuals underrepresented in tech reinvent their skills to align with the changing workforce market. If you are ready to start your tech journey, join our talent community today.</p>
</li>
<li class="program">
<h3>Pipeline DevShops</h3>
<p>Pipeline DevShop is a youth work-based learning program. Youth participants experience working in a real software development environment while sharpening their technology and soft skills.</p>
</li>
<li class="program">
<h3>Platform Programs</h3>
<p>Platform programs are designed for high school graduates, college students, career changers, or professionals looking to develop the technology job readiness skills for today’s workforce.</p>
</li>
</ul>
</section>
</article>
</div>
</div>
<footer class="footer">
&copy; 2024 Code Differently
</footer>
</body>
</html>
Binary file added lesson_20/Javyen_template_copy/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
125 changes: 125 additions & 0 deletions lesson_20/Javyen_template_copy/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
/*
* selects all html elements on the page
*/

* {
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0;
font-family: Poppins, sans-serif;
}

/*
------------------------------------------
the code below was referenced from chatgpt
-------------------------------------------
*/
.header-top-menu {
display: flex;
gap: 2rem;
position: fixed;
top: 75;
left: 28%;
font-size: 40px;
/* 5 lines below from chatgpt */
transform: translateX(-50%);
padding: 10px; /* Optional:
list-style-type: none;
background-color: white;
padding: 10px 20px;
}

.sign-up-button {
position: fixed;
top: 40px;
right: 10px;
font-size: 40px;
background-color: white; /* Add white background */
padding: 10px 20px; /* Add padding for better appearance */
}

.header-logo img{
position: fiex;
width: 300px;
height: auto;
margin-left: 50;
margin-top: 50;
background-color: white;
padding: 10px 20px;
}

.hero-section {
display: flex;
height: 700px;
background-image: url("hero.jpg");
color: white;
background-size: cover;
background-attachment: fixed;
}

.hero-content {
display: flex;
position: relative;
flex-direction: column;
justify-content: center;
height: 90%;
padding-right: 40vw;
z-index: 3;
font-size: x-large;
color: white;
margin-left: 150;
}

.header li {
list-style: none;
display: inline-block;
padding-left: 30px;
}

.programs-section {
display: flex;
flex-wrap: wrap;
align-items: center;
padding-bottom: var(--spacing-large);
margin: 100 8%;
}

.h2 {
text-align: left;
font-size: 50%;
}

.programs{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.program {
display: flex;
justify-content: center;
width: 10vw;
padding-left: 4.8vw;
padding-right: 2vw;
width: 30vw;
flex-direction: column;
}

h1, h3, h4, h5, h6 {
font-weight: 800;
font-family: Montserrat;
color: #444444;
}

.footer {
position: sticky;
display: flex;
color: #000000;
height: 7vw;
width: 100vw;
justify-content: center;
align-items: center;
font-size: 15px;
padding-bottom: 0px;
}