KingNish commited on
Commit
761f591
·
verified ·
1 Parent(s): 1b0e2c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -108,6 +108,10 @@ async def script1_js():
108
  async def script2_js():
109
  return FileResponse("script2.js")
110
 
 
 
 
 
111
  @app.get("/")
112
  async def read_index():
113
  return FileResponse('index.html')
 
108
  async def script2_js():
109
  return FileResponse("script2.js")
110
 
111
+ @app.get("/styles.css")
112
+ async def styles_css():
113
+ return FileResponse("styles.css")
114
+
115
  @app.get("/")
116
  async def read_index():
117
  return FileResponse('index.html')