frame.html 800 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. </head>
  6. <body>
  7. <!-- Latest compiled and minified CSS -->
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/>
  9. <!-- List with handle -->
  10. <div id="listWithHandle" class="list-group">
  11. <div class="list-group-item">
  12. <span class="badge">14</span>
  13. <span class="glyphicon glyphicon-move" aria-hidden="true"></span>
  14. Drag me by the handle
  15. </div>
  16. <div class="list-group-item">
  17. <span class="badge">2</span>
  18. <span class="glyphicon glyphicon-move" aria-hidden="true"></span>
  19. You can also select text
  20. </div>
  21. <div class="list-group-item">
  22. <span class="badge">1</span>
  23. <span class="glyphicon glyphicon-move" aria-hidden="true"></span>
  24. Best of both worlds!
  25. </div>
  26. </div>
  27. </body>
  28. </html>