Advertisement
Mhazard

HTML Webpage Template (External CSS Compatible)

Feb 5th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.38 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.    <link rel="stylesheet" href="mystyle.css">
  7.  </head>
  8.  <body>
  9.   <h1>Welcome to My First Web Page</h1>
  10.   <p>Hello! This ia a paragraph</p>
  11.   <h1>And there is an image below</h1>
  12.   <p>click the image below for my album.</p>
  13.   <p>
  14.    <a href="https://www.flickr.com/photos/42405591@N02" target="_blank">
  15.     <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;">
  16.    </a>
  17.   </p>  
  18.   <h2>And here is a video</h2>
  19.   <p><iframe width="560" height="315" src="https://www.youtube.com/embed/Jy9QRbQt_BU" frameborder="0" allowfullscreen></iframe></p>
  20.   <h2>And here is a 3x3 table</h2>
  21.   <table style="width:100%" border="1">
  22.    <tr>
  23.     <td>A1</td>
  24.     <td>A2</td>
  25.     <td>A3</td>
  26.    </tr>
  27.    <tr>
  28.     <td>B1</td>
  29.     <td>B2</td>
  30.     <td>B3</td>
  31.    </tr>  
  32.    <tr>
  33.     <td>C1</td>
  34.     <td>C2</td>
  35.     <td>C3</td>
  36.    </tr>
  37.   </table>
  38.     <h2>And here is an order list</h2>
  39.   <ol>
  40.    <li>Item 1</li>
  41.    <li>Item 2</li>
  42.    <li>Item 3</li>
  43.   </ol>
  44.     <h2>And here is an unorder list</h2>
  45.   <ul>
  46.    <li>Item A</li>
  47.    <li>Item B</li>
  48.    <li>Item C</li>
  49.   </ul>
  50.   <p>Contact:<a href="mailto:examplemail@gmail.com">examplemail@gmail.com</a></p>
  51.  
  52.  </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement