Spaces:
Paused
Paused
Create templates/index.html
Browse files- templates/index.html +11 -0
templates/index.html
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>My Flask App</title>
|
5 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<h1>Welcome to My Flask App on Hugging Face Spaces!</h1>
|
9 |
+
<p>This is a simple Flask application.</p>
|
10 |
+
</body>
|
11 |
+
</html>
|