Advertisement
Nazukai

Untitled

Dec 3rd, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
  8.  
  9. </head>
  10. <body>
  11. <div class="info" id="info">
  12. <h1 id="title">Title :</h1>
  13. <h2 id="postBy">Post By :</h2>
  14. <h2 id="type">Type :</h2>
  15. <h2 id="date">Release date :</h2>
  16. <h2 id="rate">My rate :</h2>
  17. </div>
  18.  
  19. <div class="comments" id="comments">
  20.  
  21. <h1>Comments</h1>
  22. <div class="buttonAction">
  23. <button class="btn btn-dark" type="button" onclick="funcComments()"> Add comments </button>
  24.  
  25. <button class="btn btn-dark" type="button" onclick="funcRate()"> Add comments & rate </button>
  26. </div>
  27.  
  28. <div class="validate">
  29. <form action="" id="text" name="confirmForm" method="post">
  30. <h3>Comments</h3>
  31. <textarea id="confirmText" class="text" cols="200" rows ="5" name="confirmText"></textarea>
  32. <input type="submit" value="Add comments" class="btn btn-success">
  33. </form>
  34.  
  35. <form action="" id="note" name="confirmRate" method="post">
  36. <h3>Comments</h3>
  37. <textarea id="confirmText2" class="text" cols="200" rows ="5" name="confirmText"></textarea>
  38. <h3>Rate (0/5)</h3>
  39. <input type="number" id="num" name="num" min="0" max="5">
  40. <input type="submit" value="Add comments and rate" class="btn btn-success">
  41. </form>
  42. </div>
  43.  
  44. </div>
  45.  
  46. <script type="text/javascript" src="js.js"></script>
  47. <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
  48. <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
  49. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement