Skip to content

Instantly share code, notes, and snippets.

Created May 16, 2016 20:58
Show Gist options
  • Save anonymous/b3332267707514cf9eb885647f4555a3 to your computer and use it in GitHub Desktop.
Save anonymous/b3332267707514cf9eb885647f4555a3 to your computer and use it in GitHub Desktop.
Challenge #02 // source http://jsbin.com/petawu
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Challenge #02</title>
<style id="jsbin-css">
body {
font-family: 'Helvetica Neue', arial, san-serif;
}
ul {
border: 1px solid gray;
list-style-type: none;
padding: 0;
width: 200px;
border-radius: 3px;
}
li {
padding: 20px;
border-bottom: 1px solid gray;
}
li:last-child {
border-bottom: 0;
}
</style>
</head>
<body>
<ul>
<li><b>Your Name</b></li>
<li>Posts</li>
<li>Your Profile</li>
<li>Log Out</li>
</ul>
<script id="jsbin-source-css" type="text/css">body {
font-family: 'Helvetica Neue', arial, san-serif;
}
ul {
border: 1px solid gray;
list-style-type: none;
padding: 0;
width: 200px;
border-radius: 3px;
}
li {
padding: 20px;
border-bottom: 1px solid gray;
}
li:last-child {
border-bottom: 0;
}</script>
</body>
</html>
body {
font-family: 'Helvetica Neue', arial, san-serif;
}
ul {
border: 1px solid gray;
list-style-type: none;
padding: 0;
width: 200px;
border-radius: 3px;
}
li {
padding: 20px;
border-bottom: 1px solid gray;
}
li:last-child {
border-bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment