adding css

This commit is contained in:
aj 2019-02-07 13:54:26 +00:00
parent d2520f701e
commit e04e90bf5e
2 changed files with 11 additions and 4 deletions

7
static/style.css Normal file
View File

@ -0,0 +1,7 @@
body {
background-color: grey;
}
h1 {
color: white
}

View File

@ -2,10 +2,10 @@
<html> <html>
<head> <head>
<title>sarsoo</title> <title>sarsoo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head> </head>
<body> <body>
<h1>sarsoo</h1> <h1>sarsoo</h1>
</body> </body>
</html> </html>