Advertisement
Guest User

codigo inicial

a guest
Mar 5th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.64 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>tecnol web</title>
  4.     <style>
  5.         p {
  6.             font-size: x-large;
  7.         }
  8.  
  9.         .cor {
  10.             color: blue;
  11.         }
  12.     </style>
  13.  
  14.     <!-- Latest compiled and minified CSS -->
  15.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
  16.  
  17. </head>
  18. <body>
  19.     <p class="cor">boa noite</p>
  20.  
  21.     <h1>Título da página</h1>
  22.     <h2>sub-título</h2>
  23.     <h6>texto sub do sub</h6>
  24.  
  25.     <br />
  26.     Tecnologia<br />
  27.     WEB
  28.  
  29.     <form>
  30.         <input id="nome" type="text" />
  31.         <button>Click Aqui</button>
  32.     </form>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement