Advertisement
Mhazard

HTML Webpage Template

Jan 29th, 2016
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  <head>
  4.   <title>My First Web Page</title>
  5.    <meta charset="utf-8"/>
  6.  </head>
  7.  <body>
  8.   <h1>Welcome to My First Web Page</h1>
  9.   <p>Hello! This ia a paragraph</p>
  10.   <h1>And there is an image below</h1>
  11.   <p>click the image below for my album.</p>
  12.   <p>
  13.    <a href="https://www.flickr.com/photos/42405591@N02" target="_blank">
  14.     <img src="https://c2.staticflickr.com/2/1550/24373954750_9dfa49383e_b.jpg" alt="An Image" title="Marco Hazard's Flickr Gallery" style="width:304px;height:228px;">
  15.    </a>
  16.   </p>  
  17.   <h2>And here is a video</h2>
  18.   <p><iframe width="560" height="315" src="https://www.youtube.com/embed/Jy9QRbQt_BU" frameborder="0" allowfullscreen></iframe></p>
  19.   <h2>And here is a 3x3 table</h2>
  20.   <table style="width:100%" border="1">
  21.    <tr>
  22.     <td>A1</td>
  23.     <td>A2</td>
  24.     <td>A3</td>
  25.    </tr>
  26.    <tr>
  27.     <td>B1</td>
  28.     <td>B2</td>
  29.     <td>B3</td>
  30.    </tr>  
  31.    <tr>
  32.     <td>C1</td>
  33.     <td>C2</td>
  34.     <td>C3</td>
  35.    </tr>
  36.   </table>
  37.     <h2>And here is an order list</h2>
  38.   <ol>
  39.    <li>Item 1</li>
  40.    <li>Item 2</li>
  41.    <li>Item 3</li>
  42.   </ol>
  43.     <h2>And here is an unorder list</h2>
  44.   <ul>
  45.    <li>Item A</li>
  46.    <li>Item B</li>
  47.    <li>Item C</li>
  48.   </ul>
  49.   <p>Contact:<a href="mailto:examplemail@gmail.com">marcohazard@gmail.com</a></p>
  50.  </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement