Theme Inspinia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

typography.html 47KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>INSPINIA | Typography</title>
  7. <link href="css/bootstrap.min.css" rel="stylesheet">
  8. <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
  9. <link href="css/animate.css" rel="stylesheet">
  10. <link href="css/style.css" rel="stylesheet">
  11. </head>
  12. <body>
  13. <div id="wrapper">
  14. <nav class="navbar-default navbar-static-side" role="navigation">
  15. <div class="sidebar-collapse">
  16. <ul class="nav metismenu" id="side-menu">
  17. <li class="nav-header">
  18. <div class="dropdown profile-element"> <span>
  19. <img alt="image" class="img-circle" src="img/profile_small.jpg" />
  20. </span>
  21. <a data-toggle="dropdown" class="dropdown-toggle" href="#">
  22. <span class="clear"> <span class="block m-t-xs"> <strong class="font-bold">David Williams</strong>
  23. </span> <span class="text-muted text-xs block">Art Director <b class="caret"></b></span> </span> </a>
  24. <ul class="dropdown-menu animated fadeInRight m-t-xs">
  25. <li><a href="profile.html">Profile</a></li>
  26. <li><a href="contacts.html">Contacts</a></li>
  27. <li><a href="mailbox.html">Mailbox</a></li>
  28. <li class="divider"></li>
  29. <li><a href="login.html">Logout</a></li>
  30. </ul>
  31. </div>
  32. <div class="logo-element">
  33. IN+
  34. </div>
  35. </li>
  36. <li>
  37. <a href="index.html"><i class="fa fa-th-large"></i> <span class="nav-label">Dashboards</span> <span class="fa arrow"></span></a>
  38. <ul class="nav nav-second-level collapse">
  39. <li><a href="index.html">Dashboard v.1</a></li>
  40. <li><a href="dashboard_2.html">Dashboard v.2</a></li>
  41. <li><a href="dashboard_3.html">Dashboard v.3</a></li>
  42. <li><a href="dashboard_4_1.html">Dashboard v.4</a></li>
  43. <li><a href="dashboard_5.html">Dashboard v.5 <span class="label label-primary pull-right">NEW</span></a></li>
  44. </ul>
  45. </li>
  46. <li>
  47. <a href="layouts.html"><i class="fa fa-diamond"></i> <span class="nav-label">Layouts</span></a>
  48. </li>
  49. <li>
  50. <a href="#"><i class="fa fa-bar-chart-o"></i> <span class="nav-label">Graphs</span><span class="fa arrow"></span></a>
  51. <ul class="nav nav-second-level collapse">
  52. <li><a href="graph_flot.html">Flot Charts</a></li>
  53. <li><a href="graph_morris.html">Morris.js Charts</a></li>
  54. <li><a href="graph_rickshaw.html">Rickshaw Charts</a></li>
  55. <li><a href="graph_chartjs.html">Chart.js</a></li>
  56. <li><a href="graph_chartist.html">Chartist</a></li>
  57. <li><a href="c3.html">c3 charts</a></li>
  58. <li><a href="graph_peity.html">Peity Charts</a></li>
  59. <li><a href="graph_sparkline.html">Sparkline Charts</a></li>
  60. </ul>
  61. </li>
  62. <li>
  63. <a href="mailbox.html"><i class="fa fa-envelope"></i> <span class="nav-label">Mailbox </span><span class="label label-warning pull-right">16/24</span></a>
  64. <ul class="nav nav-second-level collapse">
  65. <li><a href="mailbox.html">Inbox</a></li>
  66. <li><a href="mail_detail.html">Email view</a></li>
  67. <li><a href="mail_compose.html">Compose email</a></li>
  68. <li><a href="email_template.html">Email templates</a></li>
  69. </ul>
  70. </li>
  71. <li>
  72. <a href="metrics.html"><i class="fa fa-pie-chart"></i> <span class="nav-label">Metrics</span> </a>
  73. </li>
  74. <li>
  75. <a href="widgets.html"><i class="fa fa-flask"></i> <span class="nav-label">Widgets</span></a>
  76. </li>
  77. <li>
  78. <a href="#"><i class="fa fa-edit"></i> <span class="nav-label">Forms</span><span class="fa arrow"></span></a>
  79. <ul class="nav nav-second-level collapse">
  80. <li><a href="form_basic.html">Basic form</a></li>
  81. <li><a href="form_advanced.html">Advanced Plugins</a></li>
  82. <li><a href="form_wizard.html">Wizard</a></li>
  83. <li><a href="form_file_upload.html">File Upload</a></li>
  84. <li><a href="form_editors.html">Text Editor</a></li>
  85. <li><a href="form_markdown.html">Markdown</a></li>
  86. </ul>
  87. </li>
  88. <li>
  89. <a href="#"><i class="fa fa-desktop"></i> <span class="nav-label">App Views</span> <span class="pull-right label label-primary">SPECIAL</span></a>
  90. <ul class="nav nav-second-level collapse">
  91. <li><a href="contacts.html">Contacts</a></li>
  92. <li><a href="profile.html">Profile</a></li>
  93. <li><a href="profile_2.html">Profile v.2</a></li>
  94. <li><a href="contacts_2.html">Contacts v.2</a></li>
  95. <li><a href="projects.html">Projects</a></li>
  96. <li><a href="project_detail.html">Project detail</a></li>
  97. <li><a href="teams_board.html">Teams board</a></li>
  98. <li><a href="social_feed.html">Social feed</a></li>
  99. <li><a href="clients.html">Clients</a></li>
  100. <li><a href="full_height.html">Outlook view</a></li>
  101. <li><a href="vote_list.html">Vote list</a></li>
  102. <li><a href="file_manager.html">File manager</a></li>
  103. <li><a href="calendar.html">Calendar</a></li>
  104. <li><a href="issue_tracker.html">Issue tracker</a></li>
  105. <li><a href="blog.html">Blog</a></li>
  106. <li><a href="article.html">Article</a></li>
  107. <li><a href="faq.html">FAQ</a></li>
  108. <li><a href="timeline.html">Timeline</a></li>
  109. <li><a href="pin_board.html">Pin board</a></li>
  110. </ul>
  111. </li>
  112. <li>
  113. <a href="#"><i class="fa fa-files-o"></i> <span class="nav-label">Other Pages</span><span class="fa arrow"></span></a>
  114. <ul class="nav nav-second-level collapse">
  115. <li><a href="search_results.html">Search results</a></li>
  116. <li><a href="lockscreen.html">Lockscreen</a></li>
  117. <li><a href="invoice.html">Invoice</a></li>
  118. <li><a href="login.html">Login</a></li>
  119. <li><a href="login_two_columns.html">Login v.2</a></li>
  120. <li><a href="forgot_password.html">Forget password</a></li>
  121. <li><a href="register.html">Register</a></li>
  122. <li><a href="404.html">404 Page</a></li>
  123. <li><a href="500.html">500 Page</a></li>
  124. <li><a href="empty_page.html">Empty page</a></li>
  125. </ul>
  126. </li>
  127. <li>
  128. <a href="#"><i class="fa fa-globe"></i> <span class="nav-label">Miscellaneous</span><span class="label label-info pull-right">NEW</span></a>
  129. <ul class="nav nav-second-level collapse">
  130. <li><a href="toastr_notifications.html">Notification</a></li>
  131. <li><a href="nestable_list.html">Nestable list</a></li>
  132. <li><a href="agile_board.html">Agile board</a></li>
  133. <li><a href="timeline_2.html">Timeline v.2</a></li>
  134. <li><a href="diff.html">Diff</a></li>
  135. <li><a href="i18support.html">i18 support</a></li>
  136. <li><a href="sweetalert.html">Sweet alert</a></li>
  137. <li><a href="idle_timer.html">Idle timer</a></li>
  138. <li><a href="truncate.html">Truncate</a></li>
  139. <li><a href="spinners.html">Spinners</a></li>
  140. <li><a href="tinycon.html">Live favicon</a></li>
  141. <li><a href="google_maps.html">Google maps</a></li>
  142. <li><a href="code_editor.html">Code editor</a></li>
  143. <li><a href="modal_window.html">Modal window</a></li>
  144. <li><a href="clipboard.html">Clipboard</a></li>
  145. <li><a href="forum_main.html">Forum view</a></li>
  146. <li><a href="validation.html">Validation</a></li>
  147. <li><a href="tree_view.html">Tree view</a></li>
  148. <li><a href="loading_buttons.html">Loading buttons</a></li>
  149. <li><a href="chat_view.html">Chat view</a></li>
  150. <li><a href="masonry.html">Masonry</a></li>
  151. <li><a href="tour.html">Tour</a></li>
  152. </ul>
  153. </li>
  154. <li class="active">
  155. <a href="#"><i class="fa fa-flask"></i> <span class="nav-label">UI Elements</span><span class="fa arrow"></span></a>
  156. <ul class="nav nav-second-level">
  157. <li class="active"><a href="typography.html">Typography</a></li>
  158. <li><a href="icons.html">Icons</a></li>
  159. <li><a href="draggable_panels.html">Draggable Panels</a></li> <li><a href="resizeable_panels.html">Resizeable Panels</a></li>
  160. <li><a href="buttons.html">Buttons</a></li>
  161. <li><a href="video.html">Video</a></li>
  162. <li><a href="tabs_panels.html">Panels</a></li>
  163. <li><a href="tabs.html">Tabs</a></li>
  164. <li><a href="notifications.html">Notifications & Tooltips</a></li>
  165. <li><a href="badges_labels.html">Badges, Labels, Progress</a></li>
  166. </ul>
  167. </li>
  168. <li>
  169. <a href="grid_options.html"><i class="fa fa-laptop"></i> <span class="nav-label">Grid options</span></a>
  170. </li>
  171. <li>
  172. <a href="#"><i class="fa fa-table"></i> <span class="nav-label">Tables</span><span class="fa arrow"></span></a>
  173. <ul class="nav nav-second-level collapse">
  174. <li><a href="table_basic.html">Static Tables</a></li>
  175. <li><a href="table_data_tables.html">Data Tables</a></li>
  176. <li><a href="table_foo_table.html">Foo Tables</a></li>
  177. <li><a href="jq_grid.html">jqGrid</a></li>
  178. </ul>
  179. </li>
  180. <li>
  181. <a href="#"><i class="fa fa-shopping-cart"></i> <span class="nav-label">E-commerce</span><span class="fa arrow"></span></a>
  182. <ul class="nav nav-second-level collapse">
  183. <li><a href="ecommerce_products_grid.html">Products grid</a></li>
  184. <li><a href="ecommerce_product_list.html">Products list</a></li>
  185. <li><a href="ecommerce_product.html">Product edit</a></li>
  186. <li><a href="ecommerce_product_detail.html">Product detail</a></li>
  187. <li><a href="ecommerce-cart.html">Cart</a></li>
  188. <li><a href="ecommerce-orders.html">Orders</a></li>
  189. <li><a href="ecommerce_payments.html">Credit Card form</a></li>
  190. </ul>
  191. </li>
  192. <li>
  193. <a href="#"><i class="fa fa-picture-o"></i> <span class="nav-label">Gallery</span><span class="fa arrow"></span></a>
  194. <ul class="nav nav-second-level collapse">
  195. <li><a href="basic_gallery.html">Lightbox Gallery</a></li>
  196. <li><a href="slick_carousel.html">Slick Carousel</a></li>
  197. <li><a href="carousel.html">Bootstrap Carousel</a></li>
  198. </ul>
  199. </li>
  200. <li>
  201. <a href="#"><i class="fa fa-sitemap"></i> <span class="nav-label">Menu Levels </span><span class="fa arrow"></span></a>
  202. <ul class="nav nav-second-level collapse">
  203. <li>
  204. <a href="#">Third Level <span class="fa arrow"></span></a>
  205. <ul class="nav nav-third-level">
  206. <li>
  207. <a href="#">Third Level Item</a>
  208. </li>
  209. <li>
  210. <a href="#">Third Level Item</a>
  211. </li>
  212. <li>
  213. <a href="#">Third Level Item</a>
  214. </li>
  215. </ul>
  216. </li>
  217. <li><a href="#">Second Level Item</a></li>
  218. <li>
  219. <a href="#">Second Level Item</a></li>
  220. <li>
  221. <a href="#">Second Level Item</a></li>
  222. </ul>
  223. </li>
  224. <li>
  225. <a href="css_animation.html"><i class="fa fa-magic"></i> <span class="nav-label">CSS Animations </span><span class="label label-info pull-right">62</span></a>
  226. </li>
  227. <li class="landing_link">
  228. <a target="_blank" href="landing.html"><i class="fa fa-star"></i> <span class="nav-label">Landing Page</span> <span class="label label-warning pull-right">NEW</span></a>
  229. </li>
  230. <li class="special_link">
  231. <a href="package.html"><i class="fa fa-database"></i> <span class="nav-label">Package</span></a>
  232. </li>
  233. </ul>
  234. </div>
  235. </nav>
  236. <div id="page-wrapper" class="gray-bg">
  237. <div class="row border-bottom">
  238. <nav class="navbar navbar-static-top" role="navigation" style="margin-bottom: 0">
  239. <div class="navbar-header">
  240. <a class="navbar-minimalize minimalize-styl-2 btn btn-primary " href="#"><i class="fa fa-bars"></i> </a>
  241. <form role="search" class="navbar-form-custom" action="search_results.html">
  242. <div class="form-group">
  243. <input type="text" placeholder="Search for something..." class="form-control" name="top-search" id="top-search">
  244. </div>
  245. </form>
  246. </div>
  247. <ul class="nav navbar-top-links navbar-right">
  248. <li>
  249. <span class="m-r-sm text-muted welcome-message">Welcome to INSPINIA+ Admin Theme.</span>
  250. </li>
  251. <li class="dropdown">
  252. <a class="dropdown-toggle count-info" data-toggle="dropdown" href="#">
  253. <i class="fa fa-envelope"></i> <span class="label label-warning">16</span>
  254. </a>
  255. <ul class="dropdown-menu dropdown-messages">
  256. <li>
  257. <div class="dropdown-messages-box">
  258. <a href="profile.html" class="pull-left">
  259. <img alt="image" class="img-circle" src="img/a7.jpg">
  260. </a>
  261. <div class="media-body">
  262. <small class="pull-right">46h ago</small>
  263. <strong>Mike Loreipsum</strong> started following <strong>Monica Smith</strong>. <br>
  264. <small class="text-muted">3 days ago at 7:58 pm - 10.06.2014</small>
  265. </div>
  266. </div>
  267. </li>
  268. <li class="divider"></li>
  269. <li>
  270. <div class="dropdown-messages-box">
  271. <a href="profile.html" class="pull-left">
  272. <img alt="image" class="img-circle" src="img/a4.jpg">
  273. </a>
  274. <div class="media-body ">
  275. <small class="pull-right text-navy">5h ago</small>
  276. <strong>Chris Johnatan Overtunk</strong> started following <strong>Monica Smith</strong>. <br>
  277. <small class="text-muted">Yesterday 1:21 pm - 11.06.2014</small>
  278. </div>
  279. </div>
  280. </li>
  281. <li class="divider"></li>
  282. <li>
  283. <div class="dropdown-messages-box">
  284. <a href="profile.html" class="pull-left">
  285. <img alt="image" class="img-circle" src="img/profile.jpg">
  286. </a>
  287. <div class="media-body ">
  288. <small class="pull-right">23h ago</small>
  289. <strong>Monica Smith</strong> love <strong>Kim Smith</strong>. <br>
  290. <small class="text-muted">2 days ago at 2:30 am - 11.06.2014</small>
  291. </div>
  292. </div>
  293. </li>
  294. <li class="divider"></li>
  295. <li>
  296. <div class="text-center link-block">
  297. <a href="mailbox.html">
  298. <i class="fa fa-envelope"></i> <strong>Read All Messages</strong>
  299. </a>
  300. </div>
  301. </li>
  302. </ul>
  303. </li>
  304. <li class="dropdown">
  305. <a class="dropdown-toggle count-info" data-toggle="dropdown" href="#">
  306. <i class="fa fa-bell"></i> <span class="label label-primary">8</span>
  307. </a>
  308. <ul class="dropdown-menu dropdown-alerts">
  309. <li>
  310. <a href="mailbox.html">
  311. <div>
  312. <i class="fa fa-envelope fa-fw"></i> You have 16 messages
  313. <span class="pull-right text-muted small">4 minutes ago</span>
  314. </div>
  315. </a>
  316. </li>
  317. <li class="divider"></li>
  318. <li>
  319. <a href="profile.html">
  320. <div>
  321. <i class="fa fa-twitter fa-fw"></i> 3 New Followers
  322. <span class="pull-right text-muted small">12 minutes ago</span>
  323. </div>
  324. </a>
  325. </li>
  326. <li class="divider"></li>
  327. <li>
  328. <a href="grid_options.html">
  329. <div>
  330. <i class="fa fa-upload fa-fw"></i> Server Rebooted
  331. <span class="pull-right text-muted small">4 minutes ago</span>
  332. </div>
  333. </a>
  334. </li>
  335. <li class="divider"></li>
  336. <li>
  337. <div class="text-center link-block">
  338. <a href="notifications.html">
  339. <strong>See All Alerts</strong>
  340. <i class="fa fa-angle-right"></i>
  341. </a>
  342. </div>
  343. </li>
  344. </ul>
  345. </li>
  346. <li>
  347. <a href="login.html">
  348. <i class="fa fa-sign-out"></i> Log out
  349. </a>
  350. </li>
  351. </ul>
  352. </nav>
  353. </div>
  354. <div class="row wrapper border-bottom white-bg page-heading">
  355. <div class="col-lg-10">
  356. <h2>Typography</h2>
  357. <ol class="breadcrumb">
  358. <li>
  359. <a href="index.html">Home</a>
  360. </li>
  361. <li>
  362. <a>UI Elements</a>
  363. </li>
  364. <li class="active">
  365. <strong>Typography</strong>
  366. </li>
  367. </ol>
  368. </div>
  369. <div class="col-lg-2">
  370. </div>
  371. </div>
  372. <div class="wrapper wrapper-content animated fadeInRight">
  373. <div class="row">
  374. <div class="col-lg-6">
  375. <div class="ibox float-e-margins">
  376. <div class="ibox-title">
  377. <h5>Headings</h5>
  378. <div class="ibox-tools">
  379. <a class="collapse-link">
  380. <i class="fa fa-chevron-up"></i>
  381. </a>
  382. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  383. <i class="fa fa-wrench"></i>
  384. </a>
  385. <ul class="dropdown-menu dropdown-user">
  386. <li><a href="#">Config option 1</a>
  387. </li>
  388. <li><a href="#">Config option 2</a>
  389. </li>
  390. </ul>
  391. <a class="close-link">
  392. <i class="fa fa-times"></i>
  393. </a>
  394. </div>
  395. </div>
  396. <div class="ibox-content">
  397. <h1>Heading 1
  398. <small>Sub-heading</small>
  399. </h1>
  400. <h2>Heading 2
  401. <small>Sub-heading</small>
  402. </h2>
  403. <h3>Heading 3
  404. <small>Sub-heading</small>
  405. </h3>
  406. <h4>Heading 4
  407. <small>Sub-heading</small>
  408. </h4>
  409. <h5>Heading 5
  410. <small>Sub-heading</small>
  411. </h5>
  412. <h6>Heading 6
  413. <small>Sub-heading</small>
  414. </h6>
  415. </div>
  416. </div>
  417. </div>
  418. <div class="col-lg-6">
  419. <div class="ibox float-e-margins">
  420. <div class="ibox-title">
  421. <h5>Paragraph text</h5>
  422. <div class="ibox-tools">
  423. <a class="collapse-link">
  424. <i class="fa fa-chevron-up"></i>
  425. </a>
  426. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  427. <i class="fa fa-wrench"></i>
  428. </a>
  429. <ul class="dropdown-menu dropdown-user">
  430. <li><a href="#">Config option 1</a>
  431. </li>
  432. <li><a href="#">Config option 2</a>
  433. </li>
  434. </ul>
  435. <a class="close-link">
  436. <i class="fa fa-times"></i>
  437. </a>
  438. </div>
  439. </div>
  440. <div class="ibox-content">
  441. <p>Lorem ipsum <strong>eget urna mollis</strong> ornare vel eu leo. <em>Cum sociisnatoque penatibus</em> et magnis dis parturient montes, <code>code</code> nascetur
  442. ridiculus mus. Nullam id dolor id nibh ultricies vehicula ut id elit. Sed euismod aliquet sapien consequat tincidunt.</p>
  443. <p>Vivamus sagittis lacus vel augue laoreet <abbr title="" data-original-title="Sample abbreviation">rutrum faucibus dolor auctor</abbr>. Duis mollis, est non commodo
  444. luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec sed odio dui. Sed euismod aliquet sapien consequat tincidunt.</p>
  445. <p>
  446. But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual.
  447. </p>
  448. </div>
  449. </div>
  450. </div>
  451. </div>
  452. <div class="row">
  453. <div class="col-lg-4">
  454. <div class="ibox float-e-margins">
  455. <div class="ibox-title">
  456. <h5>Unstyled list</h5>
  457. <div class="ibox-tools">
  458. <a class="collapse-link">
  459. <i class="fa fa-chevron-up"></i>
  460. </a>
  461. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  462. <i class="fa fa-wrench"></i>
  463. </a>
  464. <ul class="dropdown-menu dropdown-user">
  465. <li><a href="#">Config option 1</a>
  466. </li>
  467. <li><a href="#">Config option 2</a>
  468. </li>
  469. </ul>
  470. <a class="close-link">
  471. <i class="fa fa-times"></i>
  472. </a>
  473. </div>
  474. </div>
  475. <div class="ibox-content">
  476. <ul class="unstyled">
  477. <li>But I must explain </li>
  478. <li>To you how all this mistaken</li>
  479. <li>Idea of denouncing pleasure </li>
  480. <li>Great explorer of the truth</li>
  481. <li>To take a trivial example
  482. <ul>
  483. <li>Or one who avoids a pain</li>
  484. <li>Indignation and dislike men</li>
  485. <li>Nor again is there anyone </li>
  486. <li>But who has any right</li>
  487. </ul>
  488. </li>
  489. <li>That they cannot foresee</li>
  490. <li>Who avoids a pain that produceg</li>
  491. <li>Consequences that are extremely </li>
  492. </ul>
  493. </div>
  494. </div>
  495. </div>
  496. <div class="col-lg-4">
  497. <div class="ibox float-e-margins">
  498. <div class="ibox-title">
  499. <h5>Unordered list</h5>
  500. <div class="ibox-tools">
  501. <a class="collapse-link">
  502. <i class="fa fa-chevron-up"></i>
  503. </a>
  504. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  505. <i class="fa fa-wrench"></i>
  506. </a>
  507. <ul class="dropdown-menu dropdown-user">
  508. <li><a href="#">Config option 1</a>
  509. </li>
  510. <li><a href="#">Config option 2</a>
  511. </li>
  512. </ul>
  513. <a class="close-link">
  514. <i class="fa fa-times"></i>
  515. </a>
  516. </div>
  517. </div>
  518. <div class="ibox-content">
  519. <ul>
  520. <li>But I must explain </li>
  521. <li>To you how all this mistaken</li>
  522. <li>Idea of denouncing pleasure </li>
  523. <li>Great explorer of the truth</li>
  524. <li>To take a trivial example
  525. <ul>
  526. <li>Or one who avoids a pain</li>
  527. <li>Indignation and dislike men</li>
  528. <li>Nor again is there anyone </li>
  529. <li>But who has any right</li>
  530. </ul>
  531. </li>
  532. <li>That they cannot foresee</li>
  533. <li>Who avoids a pain that produceg</li>
  534. <li>Consequences that are extremely </li>
  535. </ul>
  536. </div>
  537. </div>
  538. </div>
  539. <div class="col-lg-4">
  540. <div class="ibox float-e-margins">
  541. <div class="ibox-title">
  542. <h5>Ordered list</h5>
  543. <div class="ibox-tools">
  544. <a class="collapse-link">
  545. <i class="fa fa-chevron-up"></i>
  546. </a>
  547. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  548. <i class="fa fa-wrench"></i>
  549. </a>
  550. <ul class="dropdown-menu dropdown-user">
  551. <li><a href="#">Config option 1</a>
  552. </li>
  553. <li><a href="#">Config option 2</a>
  554. </li>
  555. </ul>
  556. <a class="close-link">
  557. <i class="fa fa-times"></i>
  558. </a>
  559. </div>
  560. </div>
  561. <div class="ibox-content">
  562. <ol>
  563. <li>But I must explain </li>
  564. <li>To you how all this mistaken</li>
  565. <li>Idea of denouncing pleasure </li>
  566. <li>Great explorer of the truth</li>
  567. <li>To take a trivial example
  568. <ol>
  569. <li>Or one who avoids a pain</li>
  570. <li>Indignation and dislike men</li>
  571. <li>Nor again is there anyone </li>
  572. <li>But who has any right</li>
  573. </ol>
  574. </li>
  575. <li>That they cannot foresee</li>
  576. <li>Who avoids a pain that produceg</li>
  577. <li>Consequences that are extremely </li>
  578. </ol>
  579. </div>
  580. </div>
  581. </div>
  582. </div>
  583. <div class="row">
  584. <div class="col-lg-6">
  585. <div class="ibox float-e-margins">
  586. <div class="ibox-title">
  587. <h5>Emphasis Classes</h5>
  588. <div class="ibox-tools">
  589. <a class="collapse-link">
  590. <i class="fa fa-chevron-up"></i>
  591. </a>
  592. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  593. <i class="fa fa-wrench"></i>
  594. </a>
  595. <ul class="dropdown-menu dropdown-user">
  596. <li><a href="#">Config option 1</a>
  597. </li>
  598. <li><a href="#">Config option 2</a>
  599. </li>
  600. </ul>
  601. <a class="close-link">
  602. <i class="fa fa-times"></i>
  603. </a>
  604. </div>
  605. </div>
  606. <div class="ibox-content">
  607. <p class="text-muted">This is an example of muted text.</p>
  608. <p class="text-primary">This is an example of primary text.</p>
  609. <p class="text-success">This is an example of success text.</p>
  610. <p class="text-info">This is an example of info text.</p>
  611. <p class="text-warning">This is an example of warning text.</p>
  612. <p class="text-danger">This is an example of danger text.</p>
  613. </div>
  614. </div>
  615. </div>
  616. <div class="col-lg-6">
  617. <div class="ibox float-e-margins">
  618. <div class="ibox-title">
  619. <h5>Blockquotes</h5>
  620. <div class="ibox-tools">
  621. <a class="collapse-link">
  622. <i class="fa fa-chevron-up"></i>
  623. </a>
  624. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  625. <i class="fa fa-wrench"></i>
  626. </a>
  627. <ul class="dropdown-menu dropdown-user">
  628. <li><a href="#">Config option 1</a>
  629. </li>
  630. <li><a href="#">Config option 2</a>
  631. </li>
  632. </ul>
  633. <a class="close-link">
  634. <i class="fa fa-times"></i>
  635. </a>
  636. </div>
  637. </div>
  638. <div class="ibox-content">
  639. <blockquote>
  640. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
  641. <small><strong>Author name</strong> in <cite title="" data-original-title="">Book name</cite></small>
  642. </blockquote>
  643. </div>
  644. </div>
  645. </div>
  646. </div>
  647. <div class="row">
  648. <div class="col-lg-4">
  649. <div class="ibox float-e-margins">
  650. <div class="ibox-title">
  651. <h5>Alignment</h5>
  652. <div class="ibox-tools">
  653. <a class="collapse-link">
  654. <i class="fa fa-chevron-up"></i>
  655. </a>
  656. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  657. <i class="fa fa-wrench"></i>
  658. </a>
  659. <ul class="dropdown-menu dropdown-user">
  660. <li><a href="#">Config option 1</a>
  661. </li>
  662. <li><a href="#">Config option 2</a>
  663. </li>
  664. </ul>
  665. <a class="close-link">
  666. <i class="fa fa-times"></i>
  667. </a>
  668. </div>
  669. </div>
  670. <div class="ibox-content">
  671. <p class="text-left">Left aligned text.</p>
  672. <p class="text-center">Center aligned text.</p>
  673. <p class="text-right">Right aligned text.</p>
  674. </div>
  675. </div>
  676. </div>
  677. <div class="col-lg-4">
  678. <div class="ibox float-e-margins">
  679. <div class="ibox-title">
  680. <h5>Address</h5>
  681. <div class="ibox-tools">
  682. <a class="collapse-link">
  683. <i class="fa fa-chevron-up"></i>
  684. </a>
  685. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  686. <i class="fa fa-wrench"></i>
  687. </a>
  688. <ul class="dropdown-menu dropdown-user">
  689. <li><a href="#">Config option 1</a>
  690. </li>
  691. <li><a href="#">Config option 2</a>
  692. </li>
  693. </ul>
  694. <a class="close-link">
  695. <i class="fa fa-times"></i>
  696. </a>
  697. </div>
  698. </div>
  699. <div class="ibox-content">
  700. <address>
  701. <strong>Twitter, Inc.</strong><br>
  702. 795 Folsom Ave, Suite 600<br>
  703. San Francisco, CA 94107<br>
  704. <abbr title="Phone">P:</abbr> (123) 456-7890
  705. </address>
  706. <address>
  707. <strong>Full Name</strong><br>
  708. <a href="mailto:#">first.last@example.com</a>
  709. </address>
  710. </div>
  711. </div>
  712. </div>
  713. <div class="col-lg-4">
  714. <div class="ibox float-e-margins">
  715. <div class="ibox-title">
  716. <h5>Grouped Lists</h5>
  717. <div class="ibox-tools">
  718. <a class="collapse-link">
  719. <i class="fa fa-chevron-up"></i>
  720. </a>
  721. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  722. <i class="fa fa-wrench"></i>
  723. </a>
  724. <ul class="dropdown-menu dropdown-user">
  725. <li><a href="#">Config option 1</a>
  726. </li>
  727. <li><a href="#">Config option 2</a>
  728. </li>
  729. </ul>
  730. <a class="close-link">
  731. <i class="fa fa-times"></i>
  732. </a>
  733. </div>
  734. </div>
  735. <div class="ibox-content no-padding">
  736. <ul class="list-group">
  737. <li class="list-group-item">
  738. <span class="badge badge-primary">16</span>
  739. But I must explain to
  740. </li>
  741. <li class="list-group-item ">
  742. <span class="badge badge-info">12</span>
  743. How all this mistaken
  744. </li>
  745. <li class="list-group-item">
  746. <span class="badge badge-danger">10</span>
  747. But because occasionally
  748. </li>
  749. <li class="list-group-item">
  750. <span class="badge badge-success">10</span>
  751. But who has any right
  752. </li>
  753. <li class="list-group-item">
  754. <span class="badge badge-warning">7</span>
  755. On the other hand
  756. </li>
  757. </ul>
  758. </div>
  759. </div>
  760. </div>
  761. </div>
  762. <div class="row">
  763. <div class="col-lg-6">
  764. <div class="ibox float-e-margins">
  765. <div class="ibox-title">
  766. <h5>Grouped Lists</h5>
  767. <div class="ibox-tools">
  768. <a class="collapse-link">
  769. <i class="fa fa-chevron-up"></i>
  770. </a>
  771. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  772. <i class="fa fa-wrench"></i>
  773. </a>
  774. <ul class="dropdown-menu dropdown-user">
  775. <li><a href="#">Config option 1</a>
  776. </li>
  777. <li><a href="#">Config option 2</a>
  778. </li>
  779. </ul>
  780. <a class="close-link">
  781. <i class="fa fa-times"></i>
  782. </a>
  783. </div>
  784. </div>
  785. <div class="ibox-content">
  786. <div class="list-group">
  787. <a class="list-group-item active" href="#">
  788. <h3 class="list-group-item-heading">A wonderful serenity has taken</h3>
  789. <p class="list-group-item-text">I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. </p>
  790. </a>
  791. <a class="list-group-item" href="#">
  792. <h3 class="list-group-item-heading">Why painful the sixteen how minuter</h3>
  793. <p class="list-group-item-text">I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the Almighty, who formed us in his own image, and the breath </p>
  794. </a>
  795. <a class="list-group-item" href="#">
  796. <h3 class="list-group-item-heading">Barton waited twenty always repair</h3>
  797. <p class="list-group-item-text">I never was a greater artist than now. When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary</p>
  798. </a>
  799. </div>
  800. </div>
  801. </div>
  802. </div>
  803. <div class="col-lg-6">
  804. <div class="ibox float-e-margins">
  805. <div class="ibox-title">
  806. <h5>Wells</h5>
  807. <div class="ibox-tools">
  808. <a class="collapse-link">
  809. <i class="fa fa-chevron-up"></i>
  810. </a>
  811. <a class="dropdown-toggle" data-toggle="dropdown" href="#">
  812. <i class="fa fa-wrench"></i>
  813. </a>
  814. <ul class="dropdown-menu dropdown-user">
  815. <li><a href="#">Config option 1</a>
  816. </li>
  817. <li><a href="#">Config option 2</a>
  818. </li>
  819. </ul>
  820. <a class="close-link">
  821. <i class="fa fa-times"></i>
  822. </a>
  823. </div>
  824. </div>
  825. <div class="ibox-content">
  826. <div class="well">
  827. <h3>
  828. The quick, brown fox jumps over a lazy dog.
  829. </h3>
  830. I feel the presence of the Almighty, who formed us in his own image, and the breath
  831. </div>
  832. <div class="well well-lg">
  833. <h3>
  834. Quick zephyrs blow, vexing daft Jim.
  835. </h3>
  836. I feel that I never was a greater artist than now. When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees
  837. </div>
  838. <div class="well well-sm">
  839. <h3>
  840. Joaquin Phoenix was gazed by MTV for luck
  841. </h3>
  842. A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.
  843. </div>
  844. </div>
  845. </div>
  846. </div>
  847. </div>
  848. </div>
  849. <div class="footer">
  850. <div class="pull-right">
  851. 10GB of <strong>250GB</strong> Free.
  852. </div>
  853. <div>
  854. <strong>Copyright</strong> Example Company &copy; 2014-2015
  855. </div>
  856. </div>
  857. </div>
  858. </div>
  859. <!-- Mainly scripts -->
  860. <script src="js/jquery-2.1.1.js"></script>
  861. <script src="js/bootstrap.min.js"></script>
  862. <script src="js/plugins/metisMenu/jquery.metisMenu.js"></script>
  863. <script src="js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
  864. <!-- Custom and plugin javascript -->
  865. <script src="js/inspinia.js"></script>
  866. <script src="js/plugins/pace/pace.min.js"></script>
  867. </body>
  868. </html>