Advertisement
CarlosWGama

Untitled

Aug 23rd, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.54 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Clínica Veterinária</title>
  4.         <meta charset="utf-8"/>
  5.  
  6.  
  7.         <style type="text/css">
  8.             body {
  9.                 background: url('http://carloswgama.com.br/cesmac/scripts/fundo_cachorro.png');    
  10.             }  
  11.  
  12.             #cabecalho {
  13.                 background-color: #86ac41;
  14.             }        
  15.  
  16.             #conteudo_principal {
  17.                 background-color: rgb(219, 230, 228);
  18.             }
  19.  
  20.             .img-bordas {
  21.                     border-radius: 10px;
  22.             }
  23.  
  24.             .btn-branco {
  25.                 border: white 2px solid;
  26.                 border-radius: 30px;
  27.             }
  28.         </style>
  29.  
  30.     </head>
  31.    
  32.     <body>
  33.      
  34.        
  35.         <!-- CABEÇALHO -->
  36.         <div id="cabecalho">
  37.             <table width="100%">
  38.                 <tr>
  39.                 <td>
  40.                     <h1>Clínica Online</h1>
  41.                     <h2>Bem vindo!</h2>
  42.                 </td>
  43.                 <td align="right">
  44.                     <a href="http://google.com/" class="btn-branco">Sair</a>
  45.                 </td>
  46.                 </tr>
  47.             </table>
  48.        </div>
  49.        
  50.         <!-- CONTEUDO -->
  51.         <div id='conteudo_principal'>
  52.             <table width="100%">
  53.                     <tr>
  54.                         <td width="30%" align="center">
  55.                             <img class="img-bordas" src="https://imgplaceholder.com/300x300/fff"/>
  56.                         </td>
  57.                         <td>                                      
  58.                             <h3>Marque sua Consulta</h3>
  59.                             <p>Preço Consulta</p>
  60.                             <ul>
  61.                                 <li>Gato (R$ 50)</li>
  62.                                 <li>Cachorro (R$ 70)</li>
  63.                                 <li>Passaro (<strike>R$ 40</strike> por <b>R$ 20</b>)</li>
  64.                             </ul>
  65.  
  66.                             <hr/>
  67.                             <h3>Formulário</h3>
  68.                             <form action="">
  69.                                 <label for="dono">Dono:</label>
  70.                                 <input type="text" id="dono" name="dono" placeholder="Carlos"/>
  71.                                 <br/>
  72.        
  73.                                 <label for="animal">Nome animal:</label>
  74.                                 <input type="text" id="animal" name="animal" placeholder="Bob"/>
  75.                                 <br/>
  76.        
  77.                                 <label for="data">Data da consulta</label>
  78.                                 <input type="date" id="data" name="data"/>
  79.                                 <br/>
  80.        
  81.                                 <label>Raça:</label>
  82.                                 <input type="radio" value="gato" name="raca" checked="true" /> Gato
  83.                                 <input type="radio" value="cachorro"  name="raca"/> Cachorro
  84.                                 <input type="radio" value="gato"  name="raca"/> Pássaro
  85.                                 <br/>
  86.        
  87.                                 <label for="observacao">Observação:</label><br/>
  88.                                 <textarea name="observacao" id="observacao" cols="50" rows=""> </textarea>
  89.  
  90.                                 <br/>
  91.                                 <input type="submit" value="Confirmar!"/>
  92.                             </form>
  93.                        
  94.                         </td>
  95.                     </tr>
  96.             </table>
  97.         </div>
  98.     </body>
  99.  
  100. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement