flask-demo / templates /index.html
heboya8's picture
Create templates/index.html
8320099 verified
raw
history blame
281 Bytes
<!DOCTYPE html>
<html>
<head>
<title>My Flask App</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Welcome to My Flask App on Hugging Face Spaces!</h1>
<p>This is a simple Flask application.</p>
</body>
</html>