Advertisement
LiveBacteria

Correct indentation straight from the ide..

Sep 18th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.96 KB | None | 0 0
  1. This is straight from Dreamweaver, not on bloc.io's editor.
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6.     <title>My First Site</title>
  7. </head>
  8. <body>
  9.     <header>
  10.       <nav>
  11.         <ul>
  12.           <li><a href="/index.html">Home</a></li>
  13.           <li><a href="/about.html">About</a></li>
  14.           <li><a href="/contact.html">Contact</a></li>
  15.         </ul>
  16.       </nav>
  17.     </header>
  18.     <aside>
  19.       <p>This is sidebar text!</p>
  20.       <p>This is sidebar text!</p>
  21.     </aside>
  22.     <input type="datetime-local" id="" name="">
  23.     <table align = "center">
  24.       <thead>
  25.         <tr>
  26.           <th>Food</th>
  27.           <th>Description</th>
  28.           <th>Price</th>
  29.         </tr>
  30.       </thead>
  31.       <tbody>
  32.         <tr>
  33.           <td><img src="https://s3.amazonaws.com/bloc-foo/salad.jpg" alt="Picture of Cobb Salad"></td>
  34.           <td>Salad</td>
  35.           <td>Delicious Cobb Salad</td>
  36.           <td>$7.99</td>
  37.         </tr>
  38.         <tr>
  39.           <td><img src="https://s3.amazonaws.com/bloc-foo/hamburger.jpg" alt="Picture of Hamburber"></td>
  40.           <td>Burger</td>
  41.           <td>1/4 lb grass-fed burger with choice of cheese</td>
  42.           <td>$6.99</td>
  43.         </tr>
  44.         <tr>
  45.           <td><img src="https://s3.amazonaws.com/bloc-foo/chicken_salad_sandwich.jpg" alt="Picture of Chicken Salad Sandwich"></td>
  46.           <td>Chicken Salad</td>
  47.           <td>Our world famous chicken salad on a bagel with homemade pickles</td>
  48.           <td>$8.99</td>
  49.         </tr>
  50.         <tr>
  51.           <td><img src="https://s3.amazonaws.com/bloc-foo/buffalo_chicken_sandwich.jpg" alt="Picture of Buffalo Chicken Sandwich"></td>
  52.           <td>Buffalo Chicken Sandwich</td>
  53.           <td>Spicy fried chicken on a brioche bun</td>
  54.           <td>$10.99</td>
  55.         </tr>
  56.         <tr>
  57.           <td><img src="https://s3.amazonaws.com/bloc-foo/fries.jpeg" alt="Picture of Lightly Seasoned Fries"></td>
  58.           <td>Fries</td>
  59.           <td>Hand cut potatoes lightly fried and seasoned</td>
  60.           <td>$1.99</td>
  61.         </tr>
  62.         <tr>
  63.           <td><img src="https://s3.amazonaws.com/bloc-foo/soda.jpeg" alt="Picture of Soda"></td>
  64.           <td>Soda</td>
  65.           <td>Regular, Diet, Orange, or Root Beer</td>
  66.           <td>$1.00</td>
  67.         </tr>
  68.       </tbody>
  69.     </table>
  70.     <section>
  71.       <p align = "center"><strong>Enter your information</strong></p>
  72.       <form align = "center">
  73.         <fieldset>
  74.           <legend>Reservation</legend>
  75.           <input type="email" id="emailInfo">
  76.           <label for="emailInfo">Email</label>
  77.           <select name="type">
  78.             <option value = "Phone">Phone</option>
  79.             <option value = "Email" selected>Email</option>
  80.             <option value = "Text">Text</option>
  81.           </select>
  82.           <p><strong>Times Available for Reservation</strong></p>
  83.           <select>
  84.             <option value = "13:59">13:59</option>
  85.             <option value = "14:59">14:59</option>
  86.             <option value = "16:00">16:00</option>
  87.             <option value = "17:00">17:00</option>
  88.             <option value = "20:00">20:00</option>
  89.             <option value = "20:30">20:30</option>
  90.           </select>
  91.           <p><strong>Additional Notes</strong></p>
  92.           <textarea cols="50" rows="4"></textarea>
  93.           <input type="submit" value="Submit">
  94.         </fieldset>
  95.       </form>
  96.     </section>
  97.     <footer>This is where any content in the footer would go</footer>
  98. </body>
  99. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement