Advertisement
Guest User

Untitled

a guest
Dec 10th, 2015
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html land="pl">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="description" content="Free Web tutorials">
  6. <meta name="keywords" content="HTML,CSS,XML,JavaScript">
  7. <meta name="author" content="Hege Refsnes">
  8. </head>
  9. <body>
  10.  
  11. <h1>Nag³ówek</h1>
  12. <p>Aka<br>pit</p>
  13.  
  14.  
  15. <strong>pogrubiony</strong>
  16. <b>mniej pogrubiony</b>
  17. <em>pochylony</em>
  18. <i>bardziej pochylony</i>
  19. <small>pomniejszony</small>
  20. <mark>podœwietlony</mark>
  21. <sup>indeks górny</sup>
  22. <sub>indeks dolny</sub>
  23. <s>nieaktualny</s>
  24. <ins>wstawiony</ins>
  25. <del>usuniety</del>
  26.  
  27.  
  28.  
  29. <ul>
  30. <li>kawa</li>
  31. </ul>
  32. <ul style="list-style-type: square">
  33. <li>kawa</li>
  34. </ul>
  35. <ul style="list-style-type: disc">
  36. <li>kawa</li>
  37. </ul>
  38. <ul style="list-style-type: circle">
  39. <li>kawa</li>
  40. </ul>
  41. <ol>
  42. <li>kawa</li>
  43. </ol>
  44. <ol type="I">
  45. <li>kawa</li>
  46. </ol>
  47.  
  48.  
  49. <a href="http://www.zse.biaman.pl/">odwiedź naszł szkołę</a>
  50. <a href=”adres.htm”><img src=”grafika.gif”></a>
  51. <a href="mailto:bartosz.bobrykow@onet.pl">Wyślij list</a>
  52.  
  53.  
  54. <table>
  55. <tr>
  56. <td></td>
  57. <th scope="col">Nagłówek kolumny</th>
  58. </tr>
  59. <tr>
  60. <th scope="row">Nagłówek wiersza</th>
  61. <td>wiersz</td>
  62. </tr>
  63. </table>
  64.  
  65. <table border="1" style="width:100%">
  66. <tr>
  67. <th>Imie i nazwisko</th>
  68. <th colspan="2">Telefon</th>
  69. </tr>
  70. <tr>
  71. <td>Jan Kowalski</td>
  72. <td>(85) 55 77 854</td>
  73. <td>555 43 851</td>
  74. </tr>
  75. </table>
  76.  
  77. <table border="1" width="100%">
  78. <tr>
  79. <th>Imie i nazwisko</th>
  80. <td>Jan Kowalski</td>
  81. </tr>
  82. <tr>
  83. <th rowspan="2">Telefon</th>
  84. <td>(85) 55 77 854</td>
  85. </tr>
  86. <tr>
  87. <td>555 43 851</td>
  88. </tr>
  89. </table>
  90.  
  91.  
  92. <table border="1" cellpadding="5" cellspacing="20">
  93. <tr>
  94. <td>komórka 1</td>
  95. <td>komórka 2</td>
  96. </tr>
  97. <tr>
  98. <td>komórka 3</td>
  99. <td>komórka 4</td>
  100. </tr>
  101. </table>
  102.  
  103.  
  104. text size,maxlength,readonly,value,placeholder,name,required-wymagane,pattern="[A-Za-z]{3}",step="3"
  105. checkbox checked, disabled
  106. radio
  107. submit
  108. reset
  109. password <form action=”mailto:nauka@gmail.com” method=”post”>
  110. <fieldset><legend>poop</legend></fieldset>
  111.  
  112. <select size="6" multiple>
  113. <optgroup label="grupa1">
  114. <option selected>ziemniak</option></optgroup></select>
  115.  
  116. <input list="id">
  117. <datalist id="id">
  118. <option value="wybór">
  119. </datalist>
  120.  
  121. <textarea cols="50" rows="5" name="uwagi">wpisz</textarea>
  122.  
  123. <form><input type="number" name="ocena" min="1" max="6"></form>
  124.  
  125. <input type="date">rrrr-mm-dd max,min
  126.  
  127. <input type="color" name="kolor" value="#ff0000">
  128.  
  129. <input type="range" name="punkty" min="0" max="10">
  130.  
  131. <input type="image" alt="ziemniak" src="z.jpg">
  132.  
  133. file-(wybierz plik),multiple
  134.  
  135. month
  136. week
  137. time
  138. email
  139. tel
  140. url
  141.  
  142. <img src="programming.gif" alt="Computer Man" style="width:48px;height:48px;">
  143.  
  144.  
  145. <p>Click on the sun or on one of the planets to watch it closer:</p>
  146. <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
  147. <map name="planetmap">
  148. <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
  149. <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
  150. <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
  151. </map>
  152.  
  153.  
  154.  
  155. <a href= ”powitanie.wav”>-luj wie co to
  156. <embed src= ”muzyka.mp3” width= ”25px” height= ”30px” autostart="true/false" loop="true/fasle/n" volume="0-cicho/max100" controls="console"> - plim multimulti
  157. console - fszystko
  158. smallconsole - mala
  159. playbutton - tylko play
  160. pausebutton - tylko pause
  161. stopbutton - tylko stop
  162. volumebutton - suwak glosnosci
  163. jak jest controls, to trzeba width="", height="",
  164.  
  165.  
  166. <video controls autoplay loop> <audio controls>
  167. <source src="plik.mp4" type="video/mp4"> <source src="plik.mp3" type="audio/mpeg">
  168. </video> </audio>
  169.  
  170. width i height - szerokość i wysokość okna
  171. poster - miniaturka video
  172. muted - bez dzwieku sie odtworzy
  173. preload, autobuffer
  174.  
  175.  
  176. <video width="320" height="240" controls>
  177. <source src="forrest_gump.mp4" type="video/mp4">
  178. <track src="subtitles_en.vtt" kind="subtitles" srclang="en" label="English">
  179. </video>
  180. track - ścieżka tekstowa
  181.  
  182. <object width="400" height="50" data="animacja.swf"></object> - animacje
  183. <object data="horse.wav">
  184. <param name="autoplay" value="true">
  185. </object> patam- parametry odtwarzania
  186.  
  187.  
  188. <iframe width="560" height="315" src="https://www.youtube.com/embed/dulMxrNiLNE" frameborder="0" allowfullscreen></iframe>
  189. iframe - jutuby
  190.  
  191. <iframe src="przykład.html"
  192. width="200" height="200">taki tekst bedzie jak przegladarka do dupy</iframe>
  193.  
  194.  
  195. <iframe src="przyklad.html" name="nazwa"></iframe>
  196. <a href="http://www.zse.biaman.pl" target="nazwa">www.zse.biaman.pl</a> - do ramki wrzucam stronke, dzięki name
  197.  
  198.  
  199. plik1-menu
  200. <h2>MENU</h2>
  201. <h4> <a href="plik2.html" target="dol">Strona 1</a> </h4>
  202. <h4> <a href="plik2.html" target="dol2">Strona 2</a> </h4>
  203.  
  204. plik2-ramka
  205. <frameset rows="30%,*,25%">
  206. <frame src="plik1.html">
  207. <frame src="" name="dol">
  208. <frame src="" name="dol2">
  209. </frameset>
  210. </body>
  211. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement