diff --git a/lesson_22/evanphilakhong/hero.jpg b/lesson_22/evanphilakhong/hero.jpg new file mode 100644 index 00000000..3a3f4cb1 Binary files /dev/null and b/lesson_22/evanphilakhong/hero.jpg differ diff --git a/lesson_22/evanphilakhong/index.html b/lesson_22/evanphilakhong/index.html new file mode 100644 index 00000000..f918a928 --- /dev/null +++ b/lesson_22/evanphilakhong/index.html @@ -0,0 +1,63 @@ + + + Homepage + + + + + + +
+ + +
+ +
+
+
+
+
+
+
+
+

Together we can move the needle of diversity in tech.

+
Code Differently 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.
+
+
+
+

Our Programs

+
    +
  • +

    1000 Kids Coding

    +

    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.

    +
  • +
  • +

    Return Ready

    +

    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.

    +
  • +
  • +

    Pipeline DevShops

    +

    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.

    +
  • +
  • +

    Platform Programs

    +

    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.

    +
  • +
+
+
+
+
+ + + \ No newline at end of file diff --git a/lesson_22/evanphilakhong/logo.png b/lesson_22/evanphilakhong/logo.png new file mode 100644 index 00000000..847ff80d Binary files /dev/null and b/lesson_22/evanphilakhong/logo.png differ diff --git a/lesson_22/evanphilakhong/style.css b/lesson_22/evanphilakhong/style.css new file mode 100644 index 00000000..68629bd9 --- /dev/null +++ b/lesson_22/evanphilakhong/style.css @@ -0,0 +1,235 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Poppins'; + line-height: 1.6; + color: #333; + background-color: #fff; +} + +a { + text-decoration: none; + color: inherit; +} + +ul { + list-style: none; +} + +.highlight { + color: #F47D26; + font-style: normal; +} + +.header { + display: flex; + justify-content: space-between; + align-items: center; + padding: 15px 50px; + background-color: #fff; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + position: sticky; + top: 0; + z-index: 1000; +} + +.header-logo img { + height: 50px; + width: auto; +} + +.header-top-menu { + display: flex; + gap: 30px; +} + +.header-top-menu li a { + font-family: 'Montserrat'; + font-weight: 600; + font-size: 16px; + color: #333; + position: relative; + transition: color 0.3s; +} + +.header-top-menu li a:hover { + color: #F47D26; +} + +.header-top-menu li a:after { + content: ''; + position: absolute; + width: 0; + height: 2px; + bottom: -5px; + left: 0; + background-color: #F47D26; + transition: width 0.3s; +} + +.header-top-menu li a:hover:after { + width: 100%; +} + +.sign-up-button { + background-color: #F47D26; + color: white; + padding: 10px 24px; + border-radius: 30px; + font-family: 'Montserrat'; + font-weight: 700; + font-size: 16px; + text-transform: uppercase; + letter-spacing: 0.5px; + transition: background-color 0.3s, transform 0.3s; +} + +.sign-up-button:hover { + background-color: #F47D26; + transform: translateY(-2px); +} + +.hero-section { + position: relative; + height: 80vh; + min-height: 600px; + background-image: url('hero.jpg'); + background-size: cover; + background-position: center; + color: #fff; + display: flex; + align-items: center; +} + +.hero-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.hero-content { + position: relative; + max-width: 900px; + text-align: left; + z-index: 1; +} + +.hero-title { + font-family: 'Montserrat'; + font-weight: 900; + font-size: 48px; + line-height: 1.2; + margin-bottom: 30px; +} + +.hero-text { + font-size: 20px; + line-height: 1.6; + margin-bottom: 40px; + max-width: 600px; + margin-right: auto; + padding-left: 10%; + background-color: #233E90; +} + +.hero-text span { + font-weight: 600; + color: #F47D26; +} + +.programs-section { + padding: 100px 50px; + text-align: left; + max-width: 1200px; + margin: 0 auto; +} + +.programs-section h2 { + font-family: 'Montserrat'; + font-weight: 900; + font-size: 40px; + margin-bottom: 60px; + position: relative; + color: #333; + display: inline-block; +} + +.programs-section h2 em { + position: relative; +} + +.programs-section h2 em:after { + content: ''; + position: absolute; + height: 5px; + width: 100%; + background-color: #F47D26; + bottom: -10px; + left: 0; +} + +.programs { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 60px 40px; + margin-top: 50px; +} + +.program { + background-color: transparent; + padding: 0; + text-align: left; + box-shadow: none; + transition: none; +} + +.program:hover { + transform: none; + box-shadow: none; +} + +.program h3 { + font-family: 'Montserrat'; + font-weight: 800; + font-size: 28px; + margin-bottom: 20px; + color: #333; +} + +.program p { + color: #666; + line-height: 1.8; + font-size: 16px; + margin-bottom: 30px; +} + +.program a { + display: inline-block; + border: 2px solid #333; + padding: 10px 30px; + font-weight: 600; + transition: all 0.3s ease; + font-size: 14px; + text-transform: uppercase; + letter-spacing: 0.5px; + margin-right: 15px; + margin-bottom: 10px; +} + +.program a:hover { + background-color: #333; + color: white; +} + +.footer { + border-top: 4px solid #F47D26; + text-align: center; + background: #fff; + padding: 2%; +}