Created
May 16, 2016 20:58
-
-
Save anonymous/b3332267707514cf9eb885647f4555a3 to your computer and use it in GitHub Desktop.
Challenge #02 // source http://jsbin.com/petawu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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