Advertisement
Guest User

Untitled

a guest
Nov 20th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title><%= title%></title>
  6.     <meta name="google" value="notranslate">
  7.     <meta name="description" content="">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.     <link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
  10.     <link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css">
  11.     <link rel="stylesheet" type="text/css" href="bower_components/fontawesome/css/font-awesome.css">
  12.     <link rel="stylesheet" type="text/css" href="bower_components/angular/angular-csp.css">
  13.     <link rel="stylesheet" type="text/css" href="bower_components/iCheck/skins/all.css">
  14.     <link rel="stylesheet" type="text/css" href="styles/profile.css">
  15.     <!-- start: Favicon and Touch Icons -->
  16.     <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
  17.     <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
  18.     <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
  19.     <link rel="apple-touch-icon-precomposed" sizes="57x57" href="assets/ico/apple-touch-icon-57-precomposed.png">
  20.     <link rel="shortcut icon" href="assets/ico/favicon.png">
  21.     <!-- end: Favicon and Touch Icons -->
  22. </head>
  23. <body data-ng-app="login" class="profile">
  24.     <div class="container">
  25.         <div class="row">
  26.             <div class="col-12-xs page-title">
  27.                 <h2>Profile Info</h2>
  28.             </div>
  29.             <div class="row">
  30.                 <div class="col-xs-6" class="user-profile-img">
  31.                     <img class="round-img" src="http://placehold.it/200x200" />
  32.                 </div>
  33.                 <div class="col-xs-6">
  34.                     <div class="row user-profile-info"><!--USER NAME-->
  35.                             <div class="col-xs-2">
  36.                                     <span class="glyphicon glyphicon-user"></span>
  37.                             </div>
  38.                         <div class="col-xs-10 user-border-bottom">
  39.                             <div class="user-info">
  40.                                 <h3>Rusty Shackleford</h3>
  41.                                 <h4>Name</h4>
  42.                             </div>
  43.                             <div class="user-info">
  44.                                 <h3>America</h3>
  45.                                 <h4>Nationality</h4>
  46.                             </div>
  47.                         </div>
  48.                     </div><!--END USER NAME-->
  49.  
  50.                     <div class="row user-profile-info"><!--USER PHONE-->
  51.                         <div class="col-xs-2">
  52.                             <span class="glyphicon glyphicon-earphone"></span>
  53.                         </div>
  54.                         <div class="col-xs-10 user-border-bottom">
  55.                             <div class="user-info">
  56.                                 <h3>+1-407-666-8008</h3>
  57.                                 <h4>Mobile</h4>
  58.                             </div>
  59.                             <div class="user-info">
  60.                                 <h3>+1-407-819-8008</h3>
  61.                                 <h4>Work</h4>
  62.                             </div>
  63.                         </div>
  64.                     </div><!--END USER PHONE-->
  65.  
  66.                     <div class="row user-profile-info"><!--USER EMAIL-->
  67.                         <div class="col-xs-2">
  68.                             <span class="glyphicon glyphicon-envelope"></span>
  69.                         </div>
  70.                         <div class="col-xs-10 user-border-bottom">
  71.                             <div class="user-info">
  72.                                 <h3>rusty.shackleford@gmail.com</h3>
  73.                                 <h4>Personal</h4>
  74.                             </div>
  75.                             <div class="user-info">
  76.                                 <h3>rusty.shackleford@gro.com</h3>
  77.                                 <h4>Work</h4>
  78.                             </div>
  79.                         </div>
  80.                     </div><!--END USER EMAIL-->
  81.                 </div>
  82.         </div>
  83.     </div>
  84. </body>
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement