Spaces:
Sleeping
Sleeping
File size: 1,062 Bytes
e7b1e22 243b6fb e7b1e22 243b6fb e7b1e22 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Interview Q&A Assistant</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/statics/styles.css"/>
<link rel="icon" type="image/png" href="/statics/icon.png"/>
<!-- markdown‑to‑html -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/purify.min.js"></script>
</head>
<body>
<main class="container">
<h1>Interview Q&A Assistant</h1>
<p class="subtitle">Hold the button, ask your interview question, release to get an answer.</p>
<button id="record-button" class="record-btn">🎙 Hold to Ask</button>
<section class="output-section">
<h2>Your Question</h2>
<pre id="question-output" class="output"></pre>
<h2>AI Answer</h2>
<pre id="answer-output" class="output markdown"></pre>
</section>
</main>
<script src="/statics/script.js"></script>
</body>
</html> |