GitHub Migration
This commit is contained in:
45
index.html
Normal file
45
index.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Martial Arts Forms Flashcards</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Martial Arts Forms Flashcards</h1>
|
||||
|
||||
<div class="flashcard-container">
|
||||
<div class="flashcard" id="flashcard">
|
||||
<div class="card-front">
|
||||
<h2 id="form-name">Click to start</h2>
|
||||
</div>
|
||||
<div class="card-back">
|
||||
<h2 id="form-number"></h2>
|
||||
<div class="info-section">
|
||||
<h3>Starting Hand Position:</h3>
|
||||
<p id="hand-position"></p>
|
||||
</div>
|
||||
<div class="info-section">
|
||||
<h3>Opening Move:</h3>
|
||||
<p id="opening-move"></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="controls">
|
||||
<button id="prev-btn" disabled>Previous</button>
|
||||
<span id="card-counter">0 / 0</span>
|
||||
<button id="next-btn">Next</button>
|
||||
</div>
|
||||
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="progress-fill"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user