Advertisement
coasterka

#3PowerPointSlide

Jun 3rd, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <style>
  5.             body {
  6.                 background: url("images/background.jpg");
  7.                 background-repeat:no-repeat;
  8.                 background-attachment:fixed;
  9.                 background-size: 100% 100%;
  10.             }
  11.                        
  12.             footer {
  13.                 color: #f3be60;
  14.                 font-family: Calibri;
  15.                 font-size: 40px;
  16.                 font-weight: bold;
  17.             }
  18.            
  19.             footer > img {
  20.                 float: right;
  21.             }
  22.            
  23.             ul {
  24.                 list-style-type: square;
  25.             }
  26.            
  27.             ul > li {
  28.                 color: #f3cd60;
  29.                 font-family: Consolas;
  30.                 font-size: 34px;
  31.                 font-weight: bold;
  32.             }
  33.             ul > li > span {
  34.                 color: white;
  35.                 font-family: Calibri;
  36.                 font-weight: normal;
  37.             }
  38.             div {
  39.                 background: #20201e;
  40.                 width: 87%;
  41.                 color: #fbeec9;
  42.                 border-style: solid;
  43.                 border-width: 1px;
  44.                 font-family: Consolas;
  45.                 font-size: 24px;
  46.                 font-weight: bold;
  47.                 margin-left:5%;
  48.                 margin-right:5%;
  49.             }
  50.         </style>
  51.         <title>PowerPoint Slide</title>
  52.     </head>
  53.     <body>
  54.         <footer>
  55.             Headings and Paragraphs
  56.             <img src="images/softuni-foundation.png" alt="SoftUni_Foundation_Logo"/>
  57.         </footer>
  58.         <section>
  59.             <ul>
  60.                 <li><span>Heading Tags: </span>&lt;h1&gt;<span> - </span>&lt;h6&gt;</li>
  61.             </ul>
  62.             <div>
  63.                 &lt;h1&gt;Heading 1&lt;&#47;h1&gt;<br>
  64.                 &lt;h1&gt;Heading 1&lt;&#47;h1&gt;<br>
  65.                 &lt;h1&gt;Heading 1&lt;&#47;h1&gt;<br>
  66.             </div> 
  67.             <ul>
  68.                 <li><span>Paragraph Tags: </span>&lt;p&gt;</li>
  69.             </ul>
  70.             <div>
  71.                 &lt;p&gt;This is my first paragraph&lt;&#47;p&gt;<br>
  72.                 &lt;p&gt;This is my second paragraph&lt;&#47;p&gt;<br>
  73.             </div>
  74.             <ul>
  75.                 <li><span>Sections: </span>&lt;div&gt;<span> and </span>&lt;span&gt;</li>
  76.             </ul>
  77.             <div>
  78.                 &lt;div style="background: skyblue;"&gt;<br>
  79.                 &nbsp;&nbsp;&nbsp;This is a div<br>
  80.                 &lt;&#47;div&gt;
  81.             </div>
  82.         </section>
  83.     </body>
  84. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement