Emanuel_Leal

produto.php

Feb 7th, 2017
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.98 KB | None | 0 0
  1. <?php
  2.     $_homeCSS = '<link rel="stylesheet" href="_css/produto2.css"/>';
  3.     $_headerTitle = "Produto 2 [PGs146-154] - Mirror Fashion";
  4.     include("header.php");
  5. ?>
  6. <div class="container">
  7.     <div class="produto">
  8.         <h1>Fuzzy Cardigan</h1>
  9.         <p>por apenas R$ 129,00</p>
  10.         <form>
  11.             <fieldset class="cores">
  12.                 <legend> Escolha a cor: </legend>
  13.                 <input type="radio" name="cor" id="verde">
  14.                 <label for="verde">
  15.                     <img src="_img/produtos/foto2-verde.png" alt="Produto na cor verde">
  16.                 </label>       
  17.                 <input type="radio" name="cor" id="rosa">
  18.                 <label for="rosa">
  19.                     <img src="_img/produtos/foto2-rosa.png" alt="Produto na cor rosa">
  20.                 </label>
  21.                 <input type="radio" name="cor" id="azul">
  22.                 <label for="azul">
  23.                     <img src="_img/produtos/foto2-azul.png" alt="Produto na cor azul">
  24.                 </label>
  25.             </fieldset>
  26.             <input type="submit" class="comprar" value="Comprar">
  27.         </form>
  28.     </div>
  29. </div>
  30. <?php // Include Rodapé =============
  31.     include("footer.php");
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment