yunzi7 commited on
Commit
fda9a49
ยท
1 Parent(s): 230e4fb

update html

Browse files
ice_breaking_challenge/introduction.py CHANGED
@@ -20,5 +20,5 @@ def qr() -> None:
20
  match request.method:
21
  case "GET":
22
  return render_template("introduction.html")
23
- case "POST": # qr.html์—์„œ `๋‹ค์Œ` ๋ฒ„ํŠผ ๋ˆŒ๋ €์„ ๋•Œ
24
  return render_template("introduction.html")
 
20
  match request.method:
21
  case "GET":
22
  return render_template("introduction.html")
23
+ case "POST":
24
  return render_template("introduction.html")
ice_breaking_challenge/templates/introduction.html CHANGED
@@ -2,10 +2,12 @@
2
 
3
  {% block content %}
4
  <div style="text-align: center; margin-top: 20px;">
5
- <h2>์ž๊ธฐ์†Œ๊ฐœ ํ•˜๋Š” ์‹œ๊ฐ„์„ ๊ฐ€์ ธ ๋ณด์„ธ์š”</h2>
6
- <p>ํŒ€์›๋“ค๊ณผ ํ•จ๊ป˜ ์ด๋ฆ„๊ณผ ๋‚˜์ด๋ฅผ ์†Œ๊ฐœํ•ด ๋ด…์‹œ๋‹ค!</p>
7
  <form method="post" style="margin-top: 20px;">
8
  <input type="submit" value="๋‹ค์Œ" style="padding: 10px 20px; font-size: 16px; cursor: pointer; border-radius: 5px; border: none; background-color: #007bff; color: white;">
9
  </form>
10
  </div>
 
 
11
  {% endblock %}
 
2
 
3
  {% block content %}
4
  <div style="text-align: center; margin-top: 20px;">
5
+ <h2 style="font-family: 'Noto Sans', sans-serif; font-weight: 600; color: #333;">์ž๊ธฐ์†Œ๊ฐœ ํ•˜๋Š” ์‹œ๊ฐ„์„ ๊ฐ€์ ธ ๋ณด์„ธ์š”</h2>
6
+ <p style="font-family: 'Noto Sans', sans-serif; color: #555;">ํŒ€์›๋“ค๊ณผ ํ•จ๊ป˜ ๊ฐ„๋‹จํ•œ ์ž๊ธฐ์†Œ๊ฐœ๋ฅผ ํ•ด๋ณด์„ธ์š”!</p>
7
  <form method="post" style="margin-top: 20px;">
8
  <input type="submit" value="๋‹ค์Œ" style="padding: 10px 20px; font-size: 16px; cursor: pointer; border-radius: 5px; border: none; background-color: #007bff; color: white;">
9
  </form>
10
  </div>
11
+ <!-- Google Fonts ์ถ”๊ฐ€ -->
12
+ <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&display=swap" rel="stylesheet">
13
  {% endblock %}