Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 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>Prog1 - Oblig 1 - Task 5</title>
  8.  
  9. <!-- CSS -->
  10. <link rel="stylesheet" type="text/css" href="indexp.css">
  11.  
  12. <link rel="stylesheet" type="text/css" href="oppg6.css">
  13.  
  14. <!-- JavaScript -->
  15. <script src="oppg6.js"></script>
  16. </head>
  17. <body>
  18.  
  19. <h1>Task 6</h1>
  20. <nav>
  21. <menu type ="context" id= "menu">
  22. <ul>
  23. <li> <a href= "indexp.html">Home</a></li>
  24. <li> <a href= "oppg1.html">Task 1</a></li>
  25. <li> <a href= "oppg2.html">Task 2</a></li>
  26. <li> <a href= "oppg3.html">Task 3</a></li>
  27. <li> <a href= "oppg4.html">Task 4</a></li>
  28. <li> <a href= "oppg6.html">Task 5</a></li>
  29.  
  30. </ul>
  31. </menu>
  32. </nav>
  33.  
  34. <p>Please enter how many cups of coffee you've had today:</p>
  35. <input type="number" id="formAmount" /><br />
  36. <button type="button" value="Submit" id="formSubmit">Submit</button>
  37. <p id="formResult"></p>
  38. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement