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

commit 291abf8f3b4c297c848d706c54292a28720773b6
parent 83bd99ae1c0644daf87994bb840084f8fc1cc66d
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Tue, 13 Oct 2020 08:30:45 -0700

Add vocab page.

Diffstat:
Acss/vocab.css | 14++++++++++++++
Avocab/index.html | 56++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/css/vocab.css b/css/vocab.css @@ -0,0 +1,14 @@ +main { + max-width: 500px; + margin: auto; + padding: 10px; + text-align: left; +} + +h2 { + margin-top: 15px; +} + +li { + margin-left: 30px; +} diff --git a/vocab/index.html b/vocab/index.html @@ -0,0 +1,55 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"/> + <title>Vocab Sets - Spanish-Quizzer</title> + <meta name="description" content="Quiz yourself on Spanish vocabulary and conjugations through a free and highly customizable web interface."> + <meta name="viewport" content="width=device-width, user-scalable=no"/> + <link rel="icon" type="image/png" href="../images/favicon-32.png"> + <link rel="apple-touch-icon" sizes="180x180" href="../images/apple-touch-icon.png"> + <link rel="stylesheet" href="../css/global.css"> + <link rel="stylesheet" href="../css/vocab.css"> + <script src="../js/global.js"></script> + </head> + + <body onload="LoadPage();"> + <header onclick="window.location = '../';">Spanish-Quizzer</header> + + <main> + <h1>Spanish-Quizzer Vocab Sets</h1> + <p> + This page contains links to the vocabulary sets that Spanish-Quizzer uses. + </p> + + <h2>Common Words</h2> + <ul> + <li><a href="Verbs.csv">Common Verbs</a> (contains infinitives and conjugations)</li> + <li><a href="Adjectives.csv">Common Adjectives</a></li> + <li><a href="Adverbs.csv">Common Adverbs</a></li> + <li><a href="Prepositions.csv">Common Prepositions</a></li> + <li><a href="Transitions.csv">Common Transitions</a></li> + </ul> + + <h2>Spanish 1 Vocab</h2> + <ul> + <li><a href="Colors.csv">Colors</a> (Los Colores)</li> + <li><a href="Days.csv">Days</a> (Las Días)</li> + <li><a href="Months.csv">Months</a> (Los Meses)</li> + <li><a href="Questions.csv">Questions</a> (Las Preguntas)</li> + <li><a href="Weather.csv">Weather</a> (La Clima)</li> + <li><a href="Family.csv">Family</a> (La Familia)</li> + <li><a href="Clothes.csv">Clothes</a> (La Ropa)</li> + </ul> + + <h2>Spanish 2 Vocab</h2> + <ul> + <li><a href="Nature.csv">Nature</a> (La Naturaleza)</li> + <li><a href="House.csv">House</a> (La Casa)</li> + <li><a href="Vacation.csv">Vacation</a> (Las Vacaciones)</li> + <li><a href="Childhood.csv">Childhood</a> (La Niñez)</li> + <li><a href="Professions.csv">Professions</a> (Las Profesiones)</li> + <li><a href="Health.csv">Health</a> (La Salud)</li> + </ul> + </main> + </body> +</html> +\ No newline at end of file