You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am thinking this is great and that if I could add one more feature it would be to add specific CSS to the output. One way to accomplish that would be to add a css file in the same upload but would recognize the file ending to become an added stylesheet. Or perhaps there's a way to include all css files in a style directory.
The text was updated successfully, but these errors were encountered:
Since the output is a simple html page, you can add your desired css as an internal css in the head tag (with the <style> /*your css goes here*/ </style>); Actually the needed css of the page has been added to the head and you must add yours after that.
Or you can add the link to it in the head like <link rel="stylesheet" href="./style/my-styles.css">. And you must add it after the internal css in the head.
I am thinking this is great and that if I could add one more feature it would be to add specific CSS to the output. One way to accomplish that would be to add a css file in the same upload but would recognize the file ending to become an added stylesheet. Or perhaps there's a way to include all css files in a style directory.
The text was updated successfully, but these errors were encountered: