Skip to content

Instantly share code, notes, and snippets.

@matthieua
Last active January 21, 2020 20:45
Show Gist options
  • Save matthieua/ba0efa0454e90255e40392c31fcd4051 to your computer and use it in GitHub Desktop.
Save matthieua/ba0efa0454e90255e40392c31fcd4051 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" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<style>
body {
font-family: Cerebri Sans, Helvetica, Arial, sans-serif;
}
section {
margin: 120px 0;
}
h1,
h2,
p {
text-align: center;
}
h1,
h2 {
font-weight: 900;
font-size: 34px;
line-height: 48px;
margin: 0;
}
h1 {
color: #272044;
}
h2 {
text-align: center;
color: #8064e9;
padding: 0 0 24px;
}
p {
font-size: 18px;
line-height: 28px;
font-family: PT Mono, monospace;
}
div.btn-wrapper {
text-align: center;
}
p .spots-limited {
font-weight: bold;
}
button {
border-radius: 25px;
border: 1px solid #8064e9;
background: #8064e9;
color: #fff;
font-size: 16px;
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;
}
</style>
</head>
<body>
<section>
<header>
<h1>
👩‍💻 SheCodes is a Coding Workshop for Women
</h1>
<h2>
Access a new career in Technology
</h2>
</header>
<p>
SheCodes teaches coding, design and management skills to women
<br />
<span class="spots-limited">
Only 25 spots available!
</span>
</p>
<br />
<br />
<footer>
<div class="btn-wrapper">
<button>
Apply Now
</button>
</div>
</footer>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment