Advertisement
Guest User

Site

a guest
Feb 16th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.25 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5.  
  6. <head>
  7.     <title>Killer Sudoku-Ade!</title>
  8.     <link href="css/style.css" rel="stylesheet">
  9.     <link href="https://fonts.googleapis.com/css?family=Sanchez" rel="stylesheet">
  10.     <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
  11.     <script src="js/puzzles.js" type="text/javascript"></script>
  12.     <script src="js/index.js" type="text/javascript"></script>
  13.     <script src="js/main.js" type="text/javascript"></script>
  14. </head>
  15.  
  16. <body>
  17.     <h1>Killer Sudoku-Ade!</h1>
  18.     <p>(Like lemonade, only better for your health and general wellbeing)</p>
  19.  
  20.     <div id="board"></div>
  21.  
  22.     <div id="hintButton">
  23.         <p><button type="button" onclick="hint();">Hint!</button></p>
  24.     </div>
  25.  
  26.     <div id="nextButton">
  27.         <p><button type="button" onclick="next();">Next!</button></p>
  28.     </div>
  29.  
  30.     <div id="clearButton">
  31.         <p><button type="button" onclick="clearBoard();">Clear!</button></p>
  32.     </div>
  33. </body>
  34.  
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement