Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@linkgod
Last active December 20, 2015 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linkgod/6162532 to your computer and use it in GitHub Desktop.
Save linkgod/6162532 to your computer and use it in GitHub Desktop.
just a simple picture
<!DOCTYPE html>
<html>
<head>
<title>ABC</title>
<style type="text/css">
.round{
display: inline-block;
height: 100px;
width: 100px;
border-radius: 100px;
background-color: #2b73b7;
vertical-align: middle;
text-align: center;
font-size: 84px;
}
.line{
display: inline-block;
height: 18px;
width: 60px;
background-color: #2b73b7;
margin-right: -10px;
margin-left: -10px;
vertical-align: middle;
}
</style>
</head>
<body>
<span class="round">A</span>
<span class="line"></span>
<span class="round">B</span>
<span class="line"></span>
<span class="round">C</span>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment