Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.87 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.   <head>
  4.     <link href="http://s3.amazonaws.com/codecademy-content/courses/ltp2/css/bootstrap.min.css" rel="stylesheet">
  5.     <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
  6.     <link href="style.css" rel="stylesheet">
  7.   </head>
  8.   <body>
  9.     <div class="container">
  10.       <form>
  11.         <div class="form-group">
  12.           <textarea class="form-control status-box" rows="2" placeholder="What's on your mind?"></textarea>
  13.         </div>
  14.       </form>
  15.       <div class="button-group pull-right">
  16.         <p class="counter">140</p>
  17.         <a href="#" class="btn btn-primary">Post</a>
  18.       </div>
  19.    
  20.       <ul class="posts">
  21.       </ul>
  22.     </div>
  23.  
  24.     <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  25.     <script src="app.js"></script>
  26.    
  27.   </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement