Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Moja Firma</title>
  6. <style>
  7. .glowny{
  8. width: 400px;
  9. height: 800px;
  10. background-color: lightblue;
  11. margin: 0 auto;
  12. text-align: center;
  13. }
  14. .logo{
  15. width: 100%;
  16. height: 20%;
  17. text-align: center;
  18. background-color: cyan;
  19. font-size: 90%;
  20. }
  21. .maly{
  22. width: 100%;
  23. height: 15%;
  24. text-align: center;
  25. background-color: lightcyan;
  26. font-size: 90%;
  27. color:black;
  28. padding-top: 1px;
  29. }
  30. .arena{
  31. width: 89%;
  32. height: 15%;
  33. resize: none;
  34. margin-left: 5%;
  35. margin-right: 5%;
  36.  
  37. }
  38. .left{
  39. float:left;
  40. margin-right: 5%;
  41. margin-left: 5%;
  42. margin-top: 5%;
  43. line-height: 40px;
  44. }
  45. .right{
  46. float: right;
  47. margin-right: 5%;
  48. margin-left: 5%;
  49. margin-top: 5%;
  50. line-height: 40px;
  51. }
  52. .przycisk{
  53. width: 400px;
  54. height: 80px;
  55. margin-top: 13%;
  56.  
  57.  
  58. }
  59. </style>
  60. </head>
  61. <body style="background-color:white;"></body>
  62.  
  63. <div id="glowny" class="glowny">
  64. <div id="logo" class="logo">
  65. <br>
  66. <img src= gabriel.png width="300px">
  67.  
  68. </div>
  69. <div id="maly" class="maly">
  70. <br>
  71. <h3>Tel: 500-892-9986</h3>
  72. <h3>Email: filipaniolek@interia.pl</h3>
  73. </div>
  74. <div id="left" class="left">
  75. Imie:
  76. <br>
  77. Nawisko:
  78. <br>
  79. Email:
  80. <br>
  81. Potwiedź Email:
  82. <br>
  83. <br>
  84. Wiadomosc:
  85.  
  86. </div>
  87. <div id="right" class="right">
  88. <form id="f1" name="f1">
  89. <input type="text" id="imie" class="name">
  90. <br>
  91. <input type="text" id="nazwisko" class="sname">
  92. <br>
  93. <input type="text" id="email" class="mail">
  94. <br>
  95. <input type="text" id="pemail" class="cmail">
  96. <br>
  97. <br>
  98. <br>
  99.  
  100. </div>
  101. <textarea id="arena" class="arena"></textarea>
  102.  
  103. <input type="button" value="SEND" class="przycisk">
  104. </div>
  105.  
  106.  
  107. </body>
  108. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement