Skip to content

Instantly share code, notes, and snippets.

@matthieua
Last active May 7, 2025 16:51
Show Gist options
  • Save matthieua/38b34db8ec9855ba7fd062fcf33d0c75 to your computer and use it in GitHub Desktop.
Save matthieua/38b34db8ec9855ba7fd062fcf33d0c75 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SheCodes</title>
<style>
body {
font-family: Cerebri Sans, Helvetica, Arial, sans-serif;
}
h1 {
text-align: center;
font-size: 34px;
line-height: 48px;
margin: 60px 0 0;
font-weight: 900;
color: #272044;
}
h2 {
text-align: center;
font-weight: 900;
font-size: 34px;
line-height: 48px;
margin: 0;
color: #8064e9;
padding: 0 0 24px;
}
p {
text-align: center;
font-size: 18px;
line-height: 28px;
font-family: PT Mono, monospace;
}
button {
border-radius: 25px;
border: 1px solid #8064e9;
background: #8064e9;
color: #fff;
font-size: 16px;
display: block;
margin: 0 auto;
line-height: 22px;
padding: 16px 24px;
text-decoration: none;
transition: all 200ms ease;
box-shadow: rgba(37, 39, 89, 0.08) 0px 8px 8px 0;
}
button:hover {
cursor: pointer;
background: #5e41a7;
}
.limited-spots {
font-weight: bold;
}
.button-container {
margin: 60px 0;
}
</style>
</head>
<body>
<header>
<h1>
👩‍💻 SheCodes is a Coding Workshop for Women
</h1>
<h2>
Access a new career in Technology
</h2>
</header>
<section>
<p>
SheCodes teaches coding, design and management skills to women
<br />
<span class="limited-spots">
Limited number of spots available!
</span>
</p>
</section>
<footer>
<div class="button-container">
<button>
Join now
</button>
</div>
</footer>
</body>
</html>
@BColBlair
Copy link

I totally missed how we should do it... At least with the solution video I get a better understanding

Same here!

@Pixules
Copy link

Pixules commented Dec 5, 2022

the video with the challenge (& learning before) doesn't make it very clear exactly what is expected for the solution until you watch the solution video. I'd suggest this particular section is reviewed and updated so the learning video actually includes part of what is in the solution!

@MelissaHelen
Copy link

I have to repeat what others are saying here, in that it's not entirely obvious what is meant to be done in the challenge.

@AdrenaRose
Copy link

I, too, agree with what others are saying. It is very easy to misunderstand and/or overthink this particular challenge.

@currypuffy3
Copy link

I agree, I misunderstood the challenge video and thought I had to add a class to every element. It was difficult and I thought it a pointless exercise. But its only required for the div and span elements.

@Drea49
Copy link

Drea49 commented Feb 1, 2023

I agree, I misunderstood the challenge video and thought I had to add a class to every element. It was difficult and I thought it a pointless exercise. But its only required for the div and span elements.

Same here. I was very confused and frustrated trying to come up with different class names for every element.

@tahi1987
Copy link

It was confusing. Finally, I did it, but I completely changed the footer :))))

@CeeJayJo
Copy link

CeeJayJo commented Mar 5, 2023

Honestly, at this point I'm totally ready for coding. Nothing is impossible!
I found the Shecode coding lessons so interactively. First, I place my mind on what the challenge is about and I watch the "Learn" video over and over to get my solution to the challenge in a similar way to the "Learn" video. This allow me to relate what the coding message or lesson we are expect to grab or understand! I'm loving coding. Thanks Shecode

@Mpho88
Copy link

Mpho88 commented Mar 22, 2023

And here I just added the elements without classes.

@YeganeHarirchi
Copy link

I agree

@Mel199516
Copy link

@matthieua ¿Podrías echar un vistazo a este ejercicio y mejorar las instrucciones para la solución? Thank you! ♥

@wen-duran
Copy link

wen-duran commented Jul 28, 2023

Hi! From what you mentioned in the "learn" video, it seems like you would expect us to add classes to everything to get familiar with them as alternative options to "div". At least that's what I ended up doing on most of my code.

Here's my code:

<header class="header">👩‍💻 SheCodes is a Coding Workshop for Women</header>
<span class="call-to-action"> Access a new career in Technology</span>
<br />
<section>
  SheCodes teaches coding, design and management skills to women
  <br />
  <strong> Limited number of spots available! </strong>
</section>
<footer>
  <div class="button">Join now</div>
</footer>

@jpudimanasa
Copy link

I didnot understand what the challenge wanted us to do like most others here !

@kuikamau
Copy link

I also didn't understand the challenge

@Diss0lved-Girl
Copy link

I'm sooo glad I'm not the only one that had no idea what I was supposed to do lol

@Maarinaa007
Copy link

well, a bit confusing...

@EileenCodes-ops
Copy link

EileenCodes-ops commented Sep 19, 2023

I'm honestly struggling to get things, and remember all! The only element I've added was a div, and then I was literally lost in thoughts on how to use everything else! :(

@EileenCodes-ops
Copy link

I totally missed how we should do it... At least with the solution video I get a better understanding

Same here!

@Mal-95
Copy link

Mal-95 commented Sep 30, 2023

here is what I added, seeing that most of you are confused. Any suggestion is welcomed. And happy coding !!
``

<title>SheCodes</title> <style> body { font-family: Cerebri Sans, Helvetica, Arial, sans-serif; }
  h1 {
    text-align: center;
    font-size: 34px;
    line-height: 48px;
    margin: 60px 0 0;
    font-weight: 900;
    color: #272044;
  }

  h2 {
    text-align: center;
    font-weight: 900;
    font-size: 34px;
    line-height: 48px;
    margin: 0;
    color: #8064e9;
    padding: 0 0 24px;
  }

  p {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-family: PT Mono, monospace;
  }

  button {
    border-radius: 25px;
    border: 1px solid #8064e9;
    background: #8064e9;
    color: #fff;
    font-size: 16px;
    display: block;
    margin: 60px auto;
    line-height: 22px;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 200ms ease;
    box-shadow: rgba(37, 39, 89, 0.08) 0px 8px 8px 0;
  }

  button:hover {
    cursor: pointer;
    background: #5e41a7;
  }

  .header {
    text-align: center;
  }

  .important {
    text-align: center;
  }

  .specs {
    text-align: center;
    font-family: PT Mono, monospace;
    font-size: 18px;
    line-height: 28px;
  }

  .ending {
    text-align: center;
    font-family: PT Mono, monospace;
    font-size: 18px;
    line-height: 28px;
  }

</style>

👩‍💻 SheCodes is a Coding Workshop for Women

Access a new career in Technology

SheCodes teaches coding, design and management skills to women
Limited number of spots available!

Join now

@nikkimier
Copy link

I'm a little confused as well

I totally missed how we should do it... At least with the solution video I get a better understanding

Same here!

Same

@ZaneleSithole
Copy link

eyy i definitely got this challenge wrong.

@kushinga7
Copy link

l was so lost

@Thefamoustech
Copy link

So I just used div, span, section, header and footer without adding classes and hence I didn't make any changes at the CSS part- I just gave my div a class and thats it. I used these elements to my original code and even though I added these html elements to my code nothing really changed : this is what I used



👩‍💻 SheCodes is a Coding Workshop for Women



Access a new career in Technology




Shecodes teaches coding, designs and management skills to women


Limited number of spots available!



Join Now

@Thefamoustech
Copy link

@britniangela
Copy link

This particular solution code partially goes against the initial instruction which is to add these elements without affecting the CSS already coded. As in we shouldn't have to touch CSS at all. The replacing the around "Limited number of spots available!" requires bold styling to be added which is not what was asked. A smidge of a confusing solution.

@danniesan
Copy link

I almost had it, though I put and

in different places and I thought we were not supposed to change the CSS code section, that's what got me.
I almost got the same outcome I think the paragraph moved a bit.

@TapiwaTendayi
Copy link

l got confused too

@Blessama
Copy link

This was not clear

@Tadiwanashe0526
Copy link

i was confused but now after the soIution video i see what we have to do

@hdeeza
Copy link

hdeeza commented May 7, 2025

oh my🤣 i just added the element didn't expect that we are to add classes to them not to change the styling, but now i'm getting better at it, here i come div, span, section, header and footer🤣😍👩‍💻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment