HTMLify
index.html
Views: 387 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Comments</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" type="text/css" > <link rel="stylesheet" href="style.css"> <script src="dist/purify.min.js"></script> </head> <body> <div class="discussion"> <div class="discussion__header"> <div class="authed-user"> </div> <form id="newcomment__form"> <textarea tabindex="1" cols="150" rows="4" minlength="5" required placeholder="Write a comment" ></textarea> <div class="newcomment__toolbar"> <button id="reset-button" class="button--secondary" tabindex="3" type="button" > Reset </button> <button id="confirm-button" class="button--primary" tabindex="2" type="submit" > Comment </button> </div> </form> </div> <div class="discussion__comments"> <!-- will be generated --> </div> </div> <script src="script.js"></script> </body> </html> |