diff --git a/app.py b/app.py
index e69de29..bc988c9 100644
--- a/app.py
+++ b/app.py
+from flask import Flask, render_template
+
+app = Flask(__name__)
+
+@app.route("/")
+def hello_world():
+ return render_template("index.html")
+
+if __name__ == "__main__":
+ app.run(debug=True)
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..f8f4583
--- /dev/null
+++ b/templates/index.html
+<img src="https://cataas.com/cat/1DrcyohjhwcNaRIz?position=center"></img>
\ No newline at end of file