Skip to content

Commit 01c16f8

Browse files
authored
feat: adds lesson_22 homework and lesson_23 pre-work: (#543)
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 10e6f55 commit 01c16f8

File tree

5 files changed

+94
-1
lines changed

5 files changed

+94
-1
lines changed

lesson_22/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,16 @@ Please review the following resources before lecture:
1414

1515
## Homework
1616

17-
- TODO(anthonydmays): Provide more details
17+
- [ ] Study the template html files and prepare to style it to match the [Code Differently](https://codedifferently.com) website.
18+
- [ ] Do pre-work for [lesson 23](/lesson_23/).
19+
20+
### Working with CSS Instructions
21+
22+
You will have the opportunity to develop your CSS skills by attempting to mimic a simplified version of the Code Differently website.
23+
24+
1. Make a copy of the template directory and give it a unique name.
25+
2. Add your CSS to the `style.css` file in the directory.
26+
3. Submit a PR with your completed solution. You should only make modifications to the CSS file while leaving the other copies unmodified.
27+
28+
> [!NOTE]
29+
> Make sure that you have the [Live Server](vscode:extension/ritwickdey.LiveServer) extension installed in VS Code for the smoothest development experience.

lesson_22/template/hero.jpg

329 KB
Loading

lesson_22/template/index.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<html>
2+
<head>
3+
<title>Homepage</title>
4+
<meta name="viewport" content="width=device-width, initial-scale=1" />
5+
<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">
6+
<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' />
7+
<link rel="stylesheet" type="text/css" href="style.css">
8+
</head>
9+
<body>
10+
<header class="header">
11+
<div class="header-logo">
12+
<a href="index.html">
13+
<img src="logo.png" alt="Code Differently Logo" />
14+
</a>
15+
</div>
16+
<ul class="header-top-menu">
17+
<li><a href="#">Home</a></li>
18+
<li><a href="#">About</a></li>
19+
<li><a href="#">Contact</a></li>
20+
</ul>
21+
<div class="header-cta">
22+
<a class="sign-up-button" href="#">Sign Up</a>
23+
</div>
24+
</header>
25+
<div class="main">
26+
<div class="content">
27+
<article>
28+
<section class="hero-section">
29+
<div class="hero-overlay"></div>
30+
<div class="hero-content">
31+
<h2 class="hero-title">Together we can move the needle of <em class="highlight">diversity in tech.</em></h2>
32+
<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>
33+
</div>
34+
</section>
35+
<section class="programs-section">
36+
<h2>Our <em class="highlight">Programs</em></h2>
37+
<ul class="programs">
38+
<li class="program">
39+
<h3>1000 Kids Coding</h3>
40+
<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>
41+
</li>
42+
<li class="program">
43+
<h3>Return Ready</h3>
44+
<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>
45+
</li>
46+
<li class="program">
47+
<h3>Pipeline DevShops</h3>
48+
<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>
49+
</li>
50+
<li class="program">
51+
<h3>Platform Programs</h3>
52+
<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>
53+
</li>
54+
</ul>
55+
</section>
56+
</article>
57+
</div>
58+
</div>
59+
<footer class="footer">
60+
&copy; 2024 Code Differently
61+
</footer>
62+
</body>
63+
</html>

lesson_22/template/logo.png

29.2 KB
Loading

lesson_23/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Lesson 23: Web FE: Intro to HTML, CSS, & JS ([Slides](https://code-differently.github.io/code-differently-25-q1/slides/#/lesson_23))
2+
3+
## Pre-work
4+
5+
### Required
6+
7+
* [HTML in 5 minutes (Video)](https://www.youtube.com/watch?v=salY_Sm6mv4)
8+
* [CSS in 5 minutes (Video)](https://www.youtube.com/watch?v=Z4pCqK-V_Wo)
9+
* [Chrome DevTools Crash Course (Video)](https://www.youtube.com/watch?v=151NXMk0a2c)
10+
11+
### Recommended
12+
13+
* [web.dev Learn CSS series (Articles)](https://web.dev/learn/css/)
14+
* [CSS Tutorial – Full Course for Beginners (Video)](https://www.youtube.com/watch?v=OXGznpKZ_sA&t=68s)
15+
16+
## Homework
17+
18+
- TODO(anthonydmays): Add details here

0 commit comments

Comments
 (0)