Advertisement
Guest User

ccc

a guest
Oct 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Hypertext and hypermedia</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <link rel="stylesheet" href="index.css" />
  8. </head>
  9. <body>
  10. <div id="wrapper">
  11. <header>
  12. <h1>Hypertext & hypermedia</h1>
  13. </header>
  14.  
  15.  
  16. <div id="content">
  17. <section>
  18. <form>
  19. treść: <textarea rows="4" cols="50"></textarea>
  20. <label>
  21. <input type="radio" name="plec" value="m"> Mężczyzna
  22. </label>
  23.  
  24. <label>
  25. <input type="radio" name="plec" value="k"> Kobieta
  26. </label>
  27. <input type="checkbox" id="zazn">
  28. <label for="zazn">Akceptuję regulamin</label>
  29. <button type="reset" value="Reset">Reset</button>
  30. <button type="submit" value="Submit">Submit</button>
  31. </form>
  32. </section>
  33. </div>
  34. <nav>
  35. <ul>
  36. <li><a class="active" href="index.html">Main page</a></li>
  37. <li><a href="structure.html" class="active">Structure</a></li>
  38. <li><a class="active" href="contact.html"> Contact</a></li>
  39. </ul>
  40.  
  41. </nav>
  42.  
  43. </div><!-- end wrapper -->
  44. <footer>
  45. Bartosz Dąbrowski gr.2 14.10.2019
  46. <p id="goto"><a href="index.html">go to the top of the page</a></p>
  47. </footer>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement