Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.01 KB | None | 0 0
  1. <html>
  2. <head><title>This is the title of the page</title></head>
  3.     <body bgcolor="darkgreen">                          <!--This is a atribute that sets the background coulor of this body-->
  4.     "< tagname > context < /tagname >" <br/>
  5.  
  6.     "comments are written like this: <"!-- this would be a comment if it wasn't
  7.     for the speach mark before the exclimation mark --> <!--like so-->" <br/>
  8.  
  9.     "< br / > is a unique tag that self closes and has no context and formats a new line" <br/>
  10.     "< hr / > is another self closing tag that creates a horizontal line" <br/> <hr/>
  11.  
  12.     "<strong> This is strong text </strong>" <br/>
  13.     "<u> This is the u tag (underlined) </u>" <br/>
  14.     "<em> This is the em tag (italics) </em>" <br/>
  15.  
  16.     <hr/>
  17.  
  18.     <h1>This is a H1 heading</h1>
  19.     <h2>This is a H2 heading</h2>
  20.     <h3>This is a H3 heading</h3>
  21.     <h4>This is a H4 heading</h4>
  22.  
  23.     <hr/>
  24.  
  25.     <ul>
  26.         <li>This is a</li>
  27.         <li>untoed list</li>
  28.         <li>denotaed by "ul"</li>
  29.     </ul>
  30.  
  31.     <ol>
  32.         <li>This is a</li>
  33.         <li>ordered list</li>
  34.         <li>denotaed by "ol"</li>
  35.     </ol>
  36.  
  37.     <hr/>   <br/>
  38.  
  39.     <font color=#e788fc> This is a font tag that has the color atrubute </font> <br/>
  40.  
  41.     <img src="pics/baby_maz.jpg"
  42.          alt="This was supposed to be a pic of maz :("
  43.          title="Hello team!!!!" hight=20 width=300 />
  44.     <br/>
  45.  
  46.     <a href="https://www.youtube.com/watch?v=hrZqiCUx6kg&t=1057s/"
  47.        target="_blank">Go to HTML Tutorial for beginners (he liks kitterns)</a>
  48.        <br/>
  49.     <a href="wow page septaion.html">NOT A PICTURE OF MAZ</a>
  50.     <br/>
  51.  
  52.     <hr/>
  53.  
  54.     <p>This is a parograph IDK what the diffrance is but lets find out</p>
  55.  
  56.     <hr/>
  57.  
  58.     <form action="/action_page.php">
  59.         First name: <input type="text" name="fname"><br/>
  60.         Last name: <input type="text" name="lname"><br/>
  61.         <input type="submit" value="Submit">
  62.     </form>
  63.  
  64.     <hr/>
  65.  
  66.     <table border="1" cellpadding="30" cellspacing="1" bgcolor="lightblue">
  67.         <tr><td bgcolor="darkred">Maz</td><td bgcolor="lightred">maz</td></tr>
  68.         <tr><td bgcolor="purple">XD</td><td bgcolor="lightgray">xd</td></tr>
  69.     </table>
  70.  
  71.     </body>
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement