Advertisement
pacho_the_python

Untitled

Aug 7th, 2023
872
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Buttons</title>
  8.  
  9. </head>
  10. <body>
  11. <div>
  12.     <span>Read emails</span>
  13.     <button class="downButton" type="button">&darr;</button>
  14. </div>
  15. <div>
  16.     <span>Prepare presentation</span>
  17.     <button class="downButton" type="button">&darr;</button>
  18.     <button class="upButton" type="button">&uarr;</button>
  19. </div>
  20. <div>
  21.     <span>Monthly report</span>
  22.     <button class="upButton" type="button">&uarr;</button>
  23. </div>
  24.  
  25. <script src="./exam_task.js"></script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement