Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2015
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>PowerPoint Slide</title>
  5.         <style>
  6.             body {
  7.                 background: url('Picture.jpg')
  8.                 no-repeat center center fixed;
  9.                 -webkit-background-size: cover;
  10.                 -moz-background-size: cover;
  11.                 -o-background-size: cover;
  12.                 background-size: cover;
  13.             }
  14. </style>
  15.     </head>
  16.     <body>
  17.         <font size="12" color="yellow">Headings and Paragraphs</font>
  18.             <ul type="square">
  19.                 <li>
  20.                     <font size="6" color="white">Heading Tags:
  21.                     <font size="6" color="yellow">&lt;h1>
  22.                     <font size="6" color="white">-
  23.                     <font size="6" color="yellow">&lt;h6>
  24.                 </li>
  25.                     <div style="width:500px;height:110px;border:1px solid #999;">
  26.                     <font size="5">&lt;h1>Heading 1&lt;/h1><br>
  27.                     &lt;h2>Sub heading 2&lt;/h2><br>
  28.                     &lt;h3>Sub heading 3&lt;/h3>
  29.                 <li>
  30.                     <font size="6" color="white">Paragraph Tags:
  31.                     <font size="6" color="yellow">&lt;p>
  32.                 </li>
  33.                     <div style="width:500px;height:75px;border:1px solid #999;">
  34.                     <font size="5">&lt;p>This is my first paragraph &lt;p><br>
  35.                     &lt;p>This is my second paragraph&lt;/p><
  36.                 <li>
  37.                     <font size="6" color="white">Sections:
  38.                     <font size="6" color="yellow">&lt;div>
  39.                     <font size="6" color="white">and
  40.                     <font size="6" color="yellow">&lt;span>
  41.                 </li>
  42.                     <div style="width:500px;height:110px;border:1px solid #999;">
  43.                     <font size="5">&lt;div> style="background: skyblue;"><br>
  44.                     &nbsp; This is a div<br>
  45.                     &lt;/div>
  46.             </ul>
  47.     </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement