Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.49 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Grafika komputerowa</title>
  4.         <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  5.         <style>
  6.         body {
  7.             margin: 0;
  8.             font-family: "Roboto", sans-serif;}
  9.         #baner {
  10.             height:14%;
  11.             width:100%;
  12.             display: flex;
  13.             align-items: center;
  14.             background-color: #3F51B5;
  15.             color:#FAFAFA;
  16.             font-size:3em;
  17.             position: relative;
  18.             box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);}
  19.  
  20.         #txtbaner{
  21.             margin-left: 1%;
  22.         }      
  23.  
  24.         #lewo{
  25.             height:80%;
  26.             background-color: aqua;
  27.             color: #FAFAFA;
  28.             font-size: 1.5em;
  29.             width:20%;
  30.             float:left;
  31.         }
  32.         #prawo{
  33.             width:80%;
  34.             height: 80%;
  35.             background-color: #FAFAFA;
  36.             color: #212121;
  37.             float:left;
  38.            
  39.         }
  40.         #stopka{
  41.             width:100%;
  42.             height:6%;
  43.             background-color: #0b6e4f;
  44.             color:#FAFAFA;
  45.             clear:both;
  46.         }
  47.  
  48.         .przycisk{
  49.             height:20%;
  50.             background-color: #303F9F;
  51.             box-shadow:0px -3px #283593 inset;
  52.         }
  53.        
  54.         #content
  55.         {
  56.         width: 100%;
  57.         height: 100%;
  58.         position: absolute;
  59.         }
  60.         </style>
  61.     </head>
  62.     <body>
  63.         <div id="baner">
  64.             <div id="content">
  65.                 <p id="txtbaner">Grafika komputerowa</p>
  66.             </div>
  67.         </div>
  68.         <div id="lewo">
  69.             <div class="przycisk">Wprowadzenie</div>
  70.             <div class="przycisk">Zastosowanie</div>
  71.             <div class="przycisk">Podzia?</div>
  72.             <div class="przycisk">Formaty plik?w</div>
  73.             <div class="przycisk">Modele barw</div>
  74.         </div>
  75.         <div id="prawo">
  76.             Witam na mojej stronie po?wi?conej grafice komputerowej.
  77.             Postaram si? na niej wyja?ni? pewne zagadnienia zwi?zane z grafik? zar?wno dwuwymiarow?, jak i tr?jwymiarow?.
  78.             <br/><br/>
  79.             Strona zosta?a wykonana na zaj?cia z witryn i aplikacji internetowych i nie zawiera ?adnych ofert handlowych.
  80.             <br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst<br/>tekst
  81.         </div>
  82.         <div id="stopka">
  83.             Wykona?: Tomasz Wi?niewski kl. 2TIa.
  84.         </div>
  85.     </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement