LegoDrifter

HTML basics

May 5th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.             <title>HTML Cheat Sheet</title>
  5.     </head>
  6.     <body>
  7.     <!-- Headings -->
  8.     <h1>Heading One</h1>
  9.     <h2>Heading Two</h2>
  10.     <h3>Heading Three</h3>
  11.     <h4>Heading Four</h4>
  12.     <h5>Heading Five</h5>
  13.     <h6>Heading Six</h6>
  14.  
  15.     <!-- Paragraph -->
  16.     <p>
  17.         <strong>Generating some text.</strong>
  18.  
  19.     </p>
  20.     <p>
  21.         Generating some <em>text</em>.
  22.         <a href="http://google.com " target="_blank">Link</a>
  23.  
  24.     </p>
  25.     <!-- Lists -->
  26.     <ul>
  27.         <li>List item 1</li>
  28.         <ol>
  29.             <li>Drezden</li>
  30.             <li>Drezden</li>
  31.             <li>Drezden</li>
  32.         </ol>
  33.         <li>List item 2</li>
  34.         <li>List item 3</li>
  35.         <li>List item 4</li>
  36.     </ul>
  37.     <ol>
  38.         <li>List item 1</li>
  39.         <li>List item 2</li>
  40.         <li>List item 3</li>
  41.         <li>List item 4</li>
  42.     </ol>
  43.     <!-- Table -->
  44.     <table>
  45.         <thead>
  46.             <tr>
  47.                 <th>Name</th>
  48.                 <th>Email</th>
  49.                 <th>Age</th>
  50.             </tr>
  51.         </thead>
  52.         <tbody>
  53.             <tr>
  54.                 <td>Brad Traversky</td>
  55.                 <td>brad@something.com</td>
  56.                 <td>35</td>
  57.             </tr>
  58.             <tr>
  59.                 <td>John Doe</td>
  60.                 <td>jdoe@something.com</td>
  61.                 <td>29</td>
  62.             </tr>
  63.             <tr>
  64.                 <td>Adrian Andrews</td>
  65.                 <td>adrew@something.com</td>
  66.                 <td>23</td>
  67.             </tr>
  68.         </tbody>
  69.  
  70.     </table>
  71.     <br>
  72.     <hr>
  73.     <br>
  74.     <!-- Forms -->
  75.     <form action="process.php" method="POST">
  76.         <div>
  77.              <label>First Name</label>
  78.              <input type="text" name="firstName"
  79.             placeholder ="Enter first name ">
  80.         </div>
  81.     <br>
  82.         <div>
  83.             <label>Last Name</label>
  84.             <input type="text" name="lastName">
  85.         </div>
  86.         <br>
  87.         <div>
  88.             <label>Email</label>
  89.             <input type="email" name="email">
  90.         </div>
  91.         <br>
  92.         <div>
  93.             <label>Message</label>
  94.             <textarea name="message"></textarea>
  95.         </div>
  96.         <br>
  97.         <div>
  98.             <label>Gender</label>
  99.             <select name="gender">
  100.                 <option value="male">Male</option>
  101.                 <option value="female">Female</option>
  102.                 <option value="other">Other</option>
  103.             </select>
  104.         </div>
  105.         <br>
  106.         <div>
  107.             <label>Age:</label>
  108.             <input type="number" name="age"
  109.            value=""30>
  110.         </div>
  111.         <br>
  112.         <div>
  113.             <label>Birthday</label>
  114.             <input type="date" name="birthday">
  115.         </div>
  116.         <br>
  117.         <input type="submit" name="submit"
  118.               value="Submit">
  119.     </form>
  120.     <!-- Button -->
  121.     <button>Click me</button>
  122.     <br>
  123.     <!-- Image -->
  124.     <a href="images/sample.jpg">
  125.     <img src="images/sample.jpg" alt="My sample image" width="200">
  126.     </a>
  127.     <!-- Quotations -->
  128.     <blockquote cite="http://tranversymedia.com">
  129.         We shall all die, not just yet though.
  130.     </blockquote>
  131.     <p>The <abbr title="World wide web">WWW</abbr>
  132.         is awesome </p>
  133.     <p><cite>HTML crash course by Brad Traversky</cite></p>
  134.     <hr>
  135.     <a href="blog.html">1</a>
  136.     <div style="margin-top:500px;"></div>
  137.     </body>
  138.  
  139.  
  140.  
  141. </html>
Add Comment
Please, Sign In to add comment