Add styles.css

This commit is contained in:
Leonard Steppy 2025-02-14 18:00:43 +01:00
parent 648322a81e
commit fb94ac66ae
2 changed files with 9 additions and 10 deletions

View File

@ -1,16 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="de">
<head> <head>
<title>Band Sessions</title> <title>Band Sessions</title>
<style> <link data-trunk rel="css" href="styles.css">
.red { <link data-trunk rel="rust" data-bin="jana_sessions_webpage">
color:red;
}
ul {
list-style-position: inside;
}
</style>
<link data-trunk rel="rust" data-bin="jana_sessions_webpage" />
</head> </head>
<body></body> <body></body>
</html> </html>

6
styles.css Normal file
View File

@ -0,0 +1,6 @@
.red {
color:red;
}
ul {
list-style-position: inside;
}