Skip to content

Instantly share code, notes, and snippets.

@jlukic
Last active August 29, 2015 14:27
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 jlukic/5d533e29d750edc50f8a to your computer and use it in GitHub Desktop.
Save jlukic/5d533e29d750edc50f8a to your computer and use it in GitHub Desktop.
<!--- Semantic UI !-->
<nav class="ui menu">
<h3 class="header item">Title</h3>
<a class="active item">Home</a>
<a class="item">Link</a>
<a class="item">Link</a>
<span class="right floated text item">
Signed in as <a href="#">user</a>
</span>
</nav>
<!--- Bootstrap !-->
<div class="navbar">
<a class="navbar-brand" href="#">Title</a>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<p class="navbar-text pull-right">Signed in as <a href="#" class="navbar-link">User</a></p>
</ul>
</div>
<!--- Semantic UI !-->
<button class="large ui button">
<i class="heart icon"></i>
Like it
</button>
<!--- Bootstrap !-->
<button type="button" class="btn btn-primary btn-lg">
<span class="glyphicon glyphicon-heart"></span>
Like
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment