Spaces:
Runtime error
Runtime error
File size: 1,003 Bytes
df42f36 a40292e 0776c51 aecb384 230e4fb 0776c51 230e4fb aecb384 fda9a49 0776c51 df42f36 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{% extends 'base.html' %}
{% block content %}
<div class="quiz-container" style="text-align: center; margin-top: 20px;">
<h2 style="font-family: 'Montserrat', sans-serif; font-weight: 700; color: #2c3e50;">์๊ธฐ์๊ฐ ํ๋ ์๊ฐ์ ๊ฐ์ ธ ๋ณด์ธ์</h2>
<p style="font-family: 'Montserrat', sans-serif; color: #7f8c8d;">ํ์๋ค๊ณผ ํจ๊ป ๊ฐ๋จํ ์๊ธฐ์๊ฐ๋ฅผ ํด๋ณด์ธ์!</p>
<form method="post" style="margin-top: 20px;">
<input type="submit" value="๋ค์" style="padding: 10px 20px; font-size: 16px; cursor: pointer; border-radius: 5px; border: none; background-color: #2980b9; color: white;">
</form>
</div>
<div class="character-container" style="margin-top: 30px; text-align: right;">
<img src="{{ url_for('static', filename='character.png') }}" alt="character" width="200">
</div>
<!-- Google Fonts ์ถ๊ฐ -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
{% endblock %}
|