Skip to content

Commit 736fa54

Browse files
authored
feat: adds Ezra's express web server (#577)
1 parent 8fce9a7 commit 736fa54

File tree

10 files changed

+1932
-0
lines changed

10 files changed

+1932
-0
lines changed

lesson_24/ezramakini/package-lock.json

Lines changed: 1303 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lesson_24/ezramakini/package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "lesson_24",
3+
"version": "1.0.0",
4+
"description": "## Pre-work",
5+
"main": "server.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"start": "node server.js",
9+
"dev": "nodemon server.js"
10+
},
11+
"keywords": [],
12+
"author": "",
13+
"license": "ISC",
14+
"dependencies": {
15+
"ejs": "^3.1.10",
16+
"express": "^5.1.0"
17+
},
18+
"devDependencies": {
19+
"nodemon": "^3.1.10"
20+
}
21+
}

lesson_24/ezramakini/public/cd.jpeg

404 KB
Loading

lesson_24/ezramakini/public/hero.jpg

329 KB
Loading
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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">Contact</a></li>
20+
21+
</ul>
22+
<div class="header-cta">
23+
<a class="sign-up-button" href="#">Sign Up</a>
24+
</div>
25+
</header>
26+
<div class="main">
27+
<div class="content">
28+
<article>
29+
<section class="hero-section">
30+
<div class="hero-overlay"></div>
31+
<div class="hero-content">
32+
<h2 class="hero-title">Together we can move the needle of <em class="highlight">diversity in tech.</em></h2>
33+
<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>
34+
</div>
35+
</section>
36+
<section class="programs-section">
37+
<h2>Our <em class="highlight">Programs</em></h2>
38+
<ul class="programs">
39+
<li class="program">
40+
<h3>1000 Kids Coding</h3>
41+
<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>
42+
</li>
43+
<li class="program">
44+
<h3>Return Ready</h3>
45+
<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>
46+
</li>
47+
<li class="program">
48+
<h3>Pipeline DevShops</h3>
49+
<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>
50+
</li>
51+
<li class="program">
52+
<h3>Platform Programs</h3>
53+
<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>
54+
</li>
55+
</ul>
56+
</section>
57+
</article>
58+
</div>
59+
</div>
60+
<footer class="footer">
61+
&copy; 2024 Code Differently
62+
</footer>
63+
</body>
64+
</html>

lesson_24/ezramakini/public/logo.png

29.2 KB
Loading

0 commit comments

Comments
 (0)