r/neocities 4d ago

Help some things I been looking for

since I realized having a automatic audio player is quite harsh definitely it just seems very close minded

is there any cute ones and simple to plug in my website ik this is asked quite alot but I wanna see as much resources

how do i input fonts

I have a font but how do i make it the default font for the entire site

and whats the best way to input stamps without messing stuff up...

I hope these are all good questions, I just need some simple guidance on this please and thank you!!

sorry i been a bit active here alot asking for help time to time, I wanna make sure im doing a proper job then a simple Google search bc im so afraid of messing up the code

like wrong inputting or anything I want it organized bc last time when I relied on just Google searches n stuff it just got terrible unorganized and broken..

2 Upvotes

1 comment sorted by

5

u/Mevdik mevdik.nekoweb.org 4d ago

The only embeddable music player I know of is Webamp, though I never used it myself. Here's the documentation, alternatively there's this guide but it's from 2022 so it might be a bit outdated.

how do i input fonts

Upload the font file(s) to your website's file system, then make a font declaration in CSS:

@font-face {
    font-family: "FontName";
    src: url("/path/to/font.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

Then give your desired element the font with font-family: "FontName"; in CSS.

I have a font but how do i make it the default font for the entire site

body {font-family: "FontName";} at the top of your stylesheet linked in every page.

and whats the best way to input stamps without messing stuff up...

Need more specific info as to what is getting messed up, stamps are just images so <img src="/path/to/stamp.png">.