Skip to content

Commit f588da9

Browse files
authored
chore: adds assignment details and template (code-differently#375)
1 parent 7ca7eaf commit f588da9

File tree

5 files changed

+79
-0
lines changed

5 files changed

+79
-0
lines changed

lesson_20/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Lesson 20
2+
3+
## Homework
4+
5+
* Watch chapters 1–5, 10, 13, 14 of [CSS Tutorial – Full Course for Beginners](https://www.youtube.com/watch?v=OXGznpKZ_sA)
6+
* Study the template html files and prepare to style it to match the [Code Differently](https://codedifferently.com) website (due by lecture on 4/17).
7+
8+
## Working with CSS Instructions
9+
10+
You will have the opportunity to develop your CSS skills by attempting to mimic a simplified version of the Code Differently website.
11+
12+
1. Make a copy of the template directory and give it a unique name.
13+
2. Add your CSS to the `style.css` file in the directory.
14+
3. Submit a PR with your completed solution. You should only make modifications to the CSS file while leaving the other copies unmodified.
15+
16+
> [!NOTE]
17+
> Make sure that you have the [Live Server](vscode:extension/ritwickdey.LiveServer) extension installed in VS Code for the smoothest development experience.

lesson_20/template/hero.jpg

329 KB
Loading

lesson_20/template/index.html

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

lesson_20/template/logo.png

29.2 KB
Loading

lesson_20/template/style.css

Whitespace-only changes.

0 commit comments

Comments
 (0)