Skip to content

Instantly share code, notes, and snippets.

@oresh
Created June 5, 2018 15:15
Show Gist options
  • Save oresh/2545443fcba5caad779ba2e7bc781157 to your computer and use it in GitHub Desktop.
Save oresh/2545443fcba5caad779ba2e7bc781157 to your computer and use it in GitHub Desktop.
Todo html example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap 101 Template</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
</head>
<body class="bg-info">
<div class="container clearfix">
<div class="row">
<div class="col-md-8 col-md-push-2">
<br>
<div class="panel panel-default">
<div class="panel-heading">
<h1>TODO List</h1>
</div>
<div class="panel-body">
<p class="pull-left">My todo list</p>
<a href="#" class="btn btn-success pull-right">Add a task</a>
</div>
<ul class="list-group">
<li class="list-group-item clearfix">
<span class="glyphicon glyphicon-ok-circle text-success"></span> Cras justo odio
<span class="btn btn-link pull-right">
<span href="#" class="pull-right glyphicon glyphicon-remove"></span>
</span>
<span class="btn btn-link pull-right">
<span href="#" class="glyphicon glyphicon-pencil"></span>
</span>
</li>
<li class="list-group-item clearfix">Dapibus ac facilisis in
<span class="btn btn-link pull-right">
<span href="#" class="pull-right glyphicon glyphicon-remove"></span>
</span>
<span class="btn btn-link pull-right">
<span href="#" class="glyphicon glyphicon-pencil"></span>
</span>
</li>
<li class="list-group-item clearfix">Morbi leo risus
<span class="btn btn-link pull-right">
<span href="#" class="pull-right glyphicon glyphicon-remove"></span>
</span>
<span class="btn btn-link pull-right">
<span href="#" class="glyphicon glyphicon-pencil"></span>
</span>
</li>
<li class="list-group-item clearfix">Porta ac consectetur ac
<span class="btn btn-link pull-right">
<span href="#" class="pull-right glyphicon glyphicon-remove"></span>
</span>
<span class="btn btn-link pull-right">
<span href="#" class="glyphicon glyphicon-pencil"></span>
</span>
</li>
<li class="list-group-item clearfix">Vestibulum at eros
<span class="btn btn-link pull-right">
<span href="#" class="pull-right glyphicon glyphicon-remove"></span>
</span>
<span class="btn btn-link pull-right">
<span href="#" class="glyphicon glyphicon-pencil"></span>
</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment