KingNish commited on
Commit
3377ef9
1 Parent(s): 701a762

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -116,6 +116,10 @@ async def script1_js():
116
  async def script2_js():
117
  return FileResponse("script2.js")
118
 
 
 
 
 
119
  @app.get("/")
120
  async def read_index():
121
  return FileResponse('index.html')
 
116
  async def script2_js():
117
  return FileResponse("script2.js")
118
 
119
+ @app.get("/styles.css")
120
+ async def styles_css():
121
+ return FileResponse("styles.css")
122
+
123
  @app.get("/")
124
  async def read_index():
125
  return FileResponse('index.html')