spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

index.html (1095B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3     <head>
      4         <meta charset="utf-8"/>
      5         <title>Data - Spanish-Quizzer</title>
      6         <meta name="description" content="Quiz yourself on Spanish vocabulary and conjugations through a free and highly customizable web interface.">
      7         <meta name="viewport" content="width=device-width, user-scalable=no"/>
      8         <link rel="icon" type="image/png" href="../images/favicon-32.png">
      9         <link rel="apple-touch-icon" sizes="180x180" href="../images/favicon-180.png">
     10         <link rel="stylesheet" href="../css/global.css">
     11         <link rel="stylesheet" href="../css/data.css">
     12         <script src="../js/global.js"></script>
     13     </head>
     14 
     15     <body onload="SetTheme();">
     16         <header>
     17             <span onclick="window.location = '../';">Spanish-Quizzer</span>
     18         </header>
     19 
     20         <main>
     21             <h1>Spanish-Quizzer Data</h1>
     22             <ul>
     23                 <li><a href="vocab.csv">Vocabulary Data</a></li>
     24                 <li><a href="verbs.csv">Verb Conjugation Data</a></li>
     25             </ul>
     26         </main>
     27     </body>
     28 </html>