Advertisement
gitlez

YA: Simple HTML Beginning's

May 4th, 2013
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.16 KB | None | 0 0
  1. <!-- In Response to: http://answers.yahoo.com/question/answer?qid=20130504114347AA2PAfM -->
  2. <html>
  3.     <head>
  4.         <title>Testing HTML Page</title>
  5.         <style type="text/css">/* Although HTML5 Does not require the property 'type' */
  6.             body {
  7.                 background-color: black;
  8.                 position: relative;
  9.             }
  10.             h1 {
  11.                 font-family: Courier, monospace;
  12.                 color: white;
  13.                 text-align: center;
  14.             }
  15.             span#welcomeMsg {
  16.                 font-family: Courier, monospace;
  17.                 color: red;
  18.                 font-size: 18px;
  19.             }    
  20.             table {
  21.                 width: auto;
  22.                 border: 1px groove #999;
  23.                 position: relative;
  24.                 margin: auto;
  25.             }
  26.             td {
  27.                 border-top: 1px solid #666;
  28.                 border-right: 1px solid #999;
  29.                 border-bottom: 1px solid #999;
  30.                 border-left: 1px solid #666;
  31.                 padding: 2px;
  32.             }
  33.         </style>
  34.     </head>
  35.     <body>
  36.  
  37.         <p>
  38.             <h1>MY HTML PRACTICE</h1>
  39.  
  40.             <span id="welcomeMsg">
  41.                 I'm practising on how to code HTML.
  42.                 I'm near intermediate or atleast intermediate. I'm trying out how to use IMG SRC correctly.
  43.                 I'll try it now, this is my problem.
  44.             </span>
  45.         </p>
  46.         <img src="images/gas mask.jpg" style="height: 100px;width: 200px;position: relative;left: 50%;margin-left: -100px;">
  47.  
  48.         <table>
  49.             <tr>
  50.                 <td style="font-family: Impact; color: pink;">
  51.                     I'm
  52.                 </td>
  53.                 <td style="font-family: Courier;Color: yellow;">
  54.                     coding
  55.                 </td>
  56.             </tr>
  57.             <tr>
  58.                 <td style="font-family: 'Comic Sans MS';Color: green;">
  59.                     HTML
  60.                 </td>
  61.                 <td style="font-family: Arial;Color: blue;">
  62.                     wooo!
  63.                 </td>
  64.             </tr>
  65.         </table>
  66.     </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement