Advertisement
Guest User

Untitled

a guest
Nov 9th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.46 KB | None | 0 0
  1. <?php
  2. $servername = "Localhost";
  3. $username = "root";
  4. $password = "";
  5. $databasename = "home";
  6.  
  7. $conn = new mysqli($servername, $username, $password, $databasename);
  8.  
  9. ?>
  10.  
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14.     <meta charset="UTF-8">
  15.     <title>About us</title>
  16.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  17.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  18.     <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet"
  19.           integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1"
  20.           crossorigin="anonymous">
  21.     <link href="css/about.css" rel="stylesheet">
  22.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  23.     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  24. </head>
  25. <body>
  26.  
  27. <nav class="navbar navbar-inverse">
  28.     <div class="container-fluid">
  29.         <div class="navbar-header">
  30.             <a class="navbar-brand" href="index.html">Mono & Stereo</a>
  31.         </div>
  32.         <ul class="nav navbar-nav">
  33.             <li><a href="Products.html">Products</a></li>
  34.             <li><a href="About.php">About us</a></li>
  35.             <li><a href="contact.html">Contact</a></li>
  36.             <li><a href="rental.html">Rental Documents</a></li>
  37.         </ul>
  38.     </div>
  39. </nav>
  40.  
  41. <h3 class="header"> About Us:</h3>
  42.  
  43. <div class="about">
  44.     <p class="text1"> Mono & Stereo is the biggest company for audio equipment in Denmark. We have won a price for
  45.         best
  46.         customer service.</p>
  47.     <p class="text1"> We've got a lot of expensive equipment in our inventory, but our greatest asset is our
  48.         employees. </p>
  49.     <p class="text1"> We are a dedicated technical services team with experience in all aspects of event
  50.         production. </p>
  51.     <p class="text1"> If our team were not Mono & Stereo employees, we would be customers, and that's the foundation
  52.         of
  53.         our approach to customer service. </p>
  54.     <p class="text1"> We strive to provide the kind of support and attention to detail that we would expect as
  55.         working
  56.         professionals in the A/V industry. </p>
  57.     <p class="text1"> We've focused on growing our brand by building a knowledgeable team and exceeding our
  58.         customer's
  59.         expectations every chance we get. </p>
  60. </div>
  61.  
  62. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  63. <section class="team">
  64.     <div class="container">
  65.         <div class="row">
  66.             <div class="col-md-10 col-md-offset-1">
  67.                 <div class="col-lg-12">
  68.                     <h6 class="description">OUR TEAM</h6>
  69.                     <div class="row pt-md">
  70.                         <?php
  71.                         $sql_insert = "INSERT INTO mono (pic, name, position) VALUES ('" . ".pic."."','" ."name" . "','" . "position" . "')";
  72.  
  73.  
  74.                         ?>
  75.                         <?php
  76.                         $sql_select = "SELECT * FROM mono";
  77.  
  78.  
  79.                         ?>
  80.  
  81.                         <div class="col-lg-3 col-md-3 col-sm-4 col-xs-12 profile">
  82.                             <div class="img-box">
  83.                                 <img src="<?php echo 'pic';?>" class="img-responsive">
  84.                             </div>
  85.                             <h1><?php echo  'name'; ?> </h1>
  86.                             <h2><?php echo 'position'; ?></h2>
  87.                         </div>
  88.  
  89.                     </div>
  90.                 </div>
  91.             </div>
  92.         </div>
  93.     </div>
  94.     </div>
  95. </section>
  96.  
  97. <div class="space">
  98.  
  99. </div>
  100.  
  101. <nav class="nav icon-set">
  102.     <div class="container">
  103.         <ul class="nav navbar-nav">
  104.             <li class="facebook"><a href="https://www.facebook.com/christian.jonassen" data-toggle="tooltip"
  105.                                     title="Facebook"><i class="fa fa-facebook fa-lg"></i></a></li>
  106.             <li class="linkedin"><a href="https://www.linkedin.com/in/christian-jonassen-29a898116?trk=hp-identity-name"
  107.                                     data-toggle="tooltip" title="LinkedIn"><i class="fa fa-linkedin fa-lg"></i></a></li>
  108.         </ul>
  109.         <p class="text"> Using the functionality of the site you agree to the use of cookies, use incognito mode (CTRL +
  110.             Shift + n) to avoid cookies.</p>
  111.     </div>
  112. </nav>
  113.  
  114. </body>
  115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement