Advertisement
ptownhero

home.php

Dec 16th, 2020
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.69 KB | None | 0 0
  1. <?php
  2. session_start();
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6.     <head>
  7.         <!-- <meta http-equiv="refresh" content="1"> -->
  8.         <meta charset="utf-8">
  9.         <title>Home</title>
  10.         <meta name="description" content="">
  11.         <meta name="viewport" content="width=device-width, initial-scale=1">
  12.         <link rel="stylesheet" href="../css/style.css">
  13.         <script src="http://cdn.date-fns.org/v2.0.0-alpha0/date_fns.min.js"></script>
  14.         <script src="../js/mainScript.js" async defer></script>
  15.     </head>
  16.     <body>
  17.         <header>
  18.             <section class="container">
  19.             <h1 class="logo">PANTRY BUDDY</h1>
  20.                 <nav>
  21.                     <ul>
  22.                     <li><a href="home.php">HOME</a></li>
  23.                     <li><a href="myPantry.php">MY PANTRY</a></li>
  24.                     <li><a href="aboutUs.php">ABOUT US</a></li>
  25.                     <?php
  26.                     if(isset($_SESSION['submit'])){
  27.                     ?>
  28.                     <li><a href="signOut.php">SIGN OUT</a></li>
  29.                     <?php
  30.                     }
  31.                     else{
  32.                     ?>
  33.                     <li><a href="signPage.php">SIGN IN/UP</a></li>
  34.                     <?php
  35.                     }
  36.                    ?>
  37.                     <li id="clock-text"></li>
  38.                     </ul>
  39.                 </nav>
  40.             </section>
  41.         </header>
  42.         <main>
  43.             <section class="homeImage">
  44.                 <img src="../images/home2.jpg" alt="Image of a pantry with a lot of ingrediants and cooking supplies">
  45.             </section>
  46.             <section id="homeGrid">
  47.                 <article class="welcome">
  48.                     <h1>Welcome to Pantry Buddy!</h1>
  49.                 </article>
  50.                 <article>
  51.                     <img src="../images/grocery.png" alt="Image of a grocery bag">
  52.                     <p>Keep track of groceries and expiration dates with a friendly UI!</p>
  53.                 </article>
  54.                 <article>
  55.                     <img src="../images/ducklogo.png" alt="Image of a duck">
  56.                     <p>So easy to navigate and use the website even a duck can do it!</p>
  57.                 </article>
  58.                 <article>
  59.                     <img src="../images/smartphone.png" alt="Image of a hand holding a smartphone">
  60.                     <p>Take us on the go with our mobile app, never deal with expired groceries again!</p>
  61.                 </article>
  62.                 <article class="whatsNew">
  63.                     <h1>What's New</h1>
  64.                     <p>This website is new! I'm slowly bringing content and design to this project to make it flourish and prosper!</p>
  65.                 </article>
  66.             </section>
  67.             <footer>
  68.                 <p>© Ahmad Mughrabi | 2020</p>
  69.             </footer>
  70.         </main>
  71.     </body>
  72. </html>
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement