Skip to content

Instantly share code, notes, and snippets.

@santheo
Created October 7, 2013 18:24
Show Gist options
  • Select an option

  • Save santheo/6872610 to your computer and use it in GitHub Desktop.

Select an option

Save santheo/6872610 to your computer and use it in GitHub Desktop.
.tsl-logo {
height: 80px;
}
.instructor-images {
text-align: center;
border-radius: 50%;
height: 300px;
margin-top: 30px;
}
.course-heading {
text-align: center;
color: red;
font-size: 20px;
font-style: italic;
}
.instructor-heading {
color: red;
}
body {
font-family: "Helvetica Neue";
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
h1 {
text-align: center;
}
h2 {
font-size: 25px;
color: black;
}
h3 {
font-size: 20px;
}
section {
border-bottom: 1px solid lightgray;
margin: 20px;
font-weight: bold;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Broken CSS</title>
</head>
<body>
<header>
<a href="http://starterleague.com"><img src="http://www.starterleague.com/assets/new-sl-logo.png" height="50" alt=""></a>
<h1>The Starter League</h1>
</header>
<section class="course-heading">
<h2>
Learn to code, design & ship web apps at the best
beginner-focused software school in the world.
</h2>
<div>
<h3>HTML & CSS</h3>
<p>
Make the front-end of your web application functional and elegant by translating your design from concept to reality with HTML & CSS
</p>
</div>
<div >
<img class="instructor-images" src="http://assets1.starterleague.com/assets/sandor-weisz-429b3dc6f305e183600e7631bef28c6b.jpg" alt="">
<h3>Sandor Weisz</h3>
<p>Sandy has been building websites for as long as there has been a Web. He practices a holistic approach to the craft of web design. When he's not designing, he's writing puzzles.</p>
<img class="instructor-images" src="http://assets2.starterleague.com/assets/arjun-venkataswamy-70a08845f122d43ed758e2a2236beb82.jpg" alt="">
<h3>Arjun Venkataswamy</h3>
<p>Arjun is a former high school teacher who brings research experience in human-computer interaction together with practical experience from the classroom. He teaches Web Development at The Starter League.</p>
</div>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment