Webmastery Resources
Here's all my fav resources for building & upkeeping my site!!
PetraPixel is amazing, and the CSS Layout write up genuinely is what made webmastery feel accessible to me. It's so easy to read and understand. Her widgets are also epic.
W3 Schools is great for general coding help. Whenever I google coding questions I always look for the W3 schools link first HA.
Reddit LOL (usually r/neocities, r/css, etc...)
CSS Backgrounds is a great site for creating simple background patterns with CSS! Super easy to use.
For fonts I usually use Google Fonts, though I hear Fontcity is also really good.
If you dont know how to add fonts, I literally just use MartinDisk's guide on Reddit. Another super simple and easy to understand guide.
I also use Webdeck Player as my music player. Super neat!
For a marquee I've been using ColdCalzone's Code.
For my comments box I used VirtualOvserver's Comment Box and it's actually amazing.
Some code snippets that help me out and can hopefully help you too!
Hide scrollbar through CSS (im p sure works for all browsers)
div {
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
}
div::-webkit-scrollbar {
display: none;
}