contact.html 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <title>Contact - Business Casual - Start Bootstrap Theme</title>
  10. <!-- Bootstrap Core CSS -->
  11. <link href="css/bootstrap.min.css" rel="stylesheet">
  12. <!-- Custom CSS -->
  13. <link href="css/business-casual.css" rel="stylesheet">
  14. <!-- Fonts -->
  15. <link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
  16. <link href="http://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
  17. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  18. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  19. <!--[if lt IE 9]>
  20. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  21. <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  22. <![endif]-->
  23. </head>
  24. <body>
  25. <div class="brand">Business Casual</div>
  26. <div class="address-bar">3481 Melrose Place | Beverly Hills, CA 90210 | 123.456.7890</div>
  27. <!-- Navigation -->
  28. <nav class="navbar navbar-default" role="navigation">
  29. <div class="container">
  30. <!-- Brand and toggle get grouped for better mobile display -->
  31. <div class="navbar-header">
  32. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
  33. <span class="sr-only">Toggle navigation</span>
  34. <span class="icon-bar"></span>
  35. <span class="icon-bar"></span>
  36. <span class="icon-bar"></span>
  37. </button>
  38. <!-- navbar-brand is hidden on larger screens, but visible when the menu is collapsed -->
  39. <a class="navbar-brand" href="index.html">Business Casual</a>
  40. </div>
  41. <!-- Collect the nav links, forms, and other content for toggling -->
  42. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  43. <ul class="nav navbar-nav">
  44. <li>
  45. <a href="index.html">Home</a>
  46. </li>
  47. <li>
  48. <a href="about.html">About</a>
  49. </li>
  50. <li>
  51. <a href="blog.html">Blog</a>
  52. </li>
  53. <li>
  54. <a href="contact.html">Contact</a>
  55. </li>
  56. </ul>
  57. </div>
  58. <!-- /.navbar-collapse -->
  59. </div>
  60. <!-- /.container -->
  61. </nav>
  62. <div class="container">
  63. <div class="row">
  64. <div class="box">
  65. <div class="col-lg-12">
  66. <hr>
  67. <h2 class="intro-text text-center">Contact
  68. <strong>business casual</strong>
  69. </h2>
  70. <hr>
  71. </div>
  72. <div class="col-md-8">
  73. <!-- Embedded Google Map using an iframe - to select your location find it on Google maps and paste the link as the iframe src. If you want to use the Google Maps API instead then have at it! -->
  74. <iframe width="100%" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=37.0625,-95.677068&amp;spn=56.506174,79.013672&amp;t=m&amp;z=4&amp;output=embed"></iframe>
  75. </div>
  76. <div class="col-md-4">
  77. <p>Phone:
  78. <strong>123.456.7890</strong>
  79. </p>
  80. <p>Email:
  81. <strong><a href="mailto:name@example.com">name@example.com</a></strong>
  82. </p>
  83. <p>Address:
  84. <strong>3481 Melrose Place
  85. <br>Beverly Hills, CA 90210</strong>
  86. </p>
  87. </div>
  88. <div class="clearfix"></div>
  89. </div>
  90. </div>
  91. <div class="row">
  92. <div class="box">
  93. <div class="col-lg-12">
  94. <hr>
  95. <h2 class="intro-text text-center">Contact
  96. <strong>form</strong>
  97. </h2>
  98. <hr>
  99. <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugiat, vitae, distinctio, possimus repudiandae cupiditate ipsum excepturi dicta neque eaque voluptates tempora veniam esse earum sapiente optio deleniti consequuntur eos voluptatem.</p>
  100. <form role="form">
  101. <div class="row">
  102. <div class="form-group col-lg-4">
  103. <label>Name</label>
  104. <input type="text" class="form-control">
  105. </div>
  106. <div class="form-group col-lg-4">
  107. <label>Email Address</label>
  108. <input type="email" class="form-control">
  109. </div>
  110. <div class="form-group col-lg-4">
  111. <label>Phone Number</label>
  112. <input type="tel" class="form-control">
  113. </div>
  114. <div class="clearfix"></div>
  115. <div class="form-group col-lg-12">
  116. <label>Message</label>
  117. <textarea class="form-control" rows="6"></textarea>
  118. </div>
  119. <div class="form-group col-lg-12">
  120. <input type="hidden" name="save" value="contact">
  121. <button type="submit" class="btn btn-default">Submit</button>
  122. </div>
  123. </div>
  124. </form>
  125. </div>
  126. </div>
  127. </div>
  128. </div>
  129. <!-- /.container -->
  130. <footer>
  131. <div class="container">
  132. <div class="row">
  133. <div class="col-lg-12 text-center">
  134. <p>Copyright &copy; Your Website 2014</p>
  135. </div>
  136. </div>
  137. </div>
  138. </footer>
  139. <!-- jQuery -->
  140. <script src="js/jquery.js"></script>
  141. <!-- Bootstrap Core JavaScript -->
  142. <script src="js/bootstrap.min.js"></script>
  143. </body>
  144. </html>