Marsey Font!!

In my quest to *try* and import custom fonts I saw the marsey one and said why not! (I also found some holloween, and other ones :marseyevilgrin:)

Here's the code! Paste it into custom or profile CSS https://watchpeopledie.tv/settings/css :nice:

body{

font-family: "Marsey";

}

@font-face {

font-family: Marsey;

src: url(https://watchpeopledie.tv/assets/fonts/MarseyFont.woff2)

}


Drink water and have a great day!!

43
Jump in the discussion.

No email address required.

cursed i do have a question..how do i insert a custom font into css and are there any things that can potentially break it because of certain css?

Jump in the discussion.

No email address required.

You cannot import custom fonts the site protects against that using @font-face and only accepting fonts from this site/rdrama:sad: but you can use websafe ones you can use using font-family:

Jump in the discussion.

No email address required.

well what are a list of fonts available, you dont have to give me all of them if you need to type it all but just a small list. (my bad if this question sounds stupid i have no idea about css still)

Jump in the discussion.

No email address required.

Any websafe font using font-family (just google websafe fonts css it'll give you some lists :nice: they're the basic ones)

The marsey font

font-family: 'Roboto Mono';

font-family: 'Lato';

font-family: "MS Pゴシック"


@font-face {

font-family: 'Creepster';

font-style: normal;

font-weight: 400;

font-display: swap;

src: url("/assets/events/homoween/fonts/Creepster.woff2") format("woff2");

unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;

}

@font-face {

font-family: "DoubleFeature";

src: url("/assets/events/homoween/fonts/DoubleFeature.woff") format("woff");

}

@font-face {

font-family: "Jo_wrote_a_lovesong";

src: url("/assets/events/homoween/fonts/Jo_wrote_a_lovesong.woff") format("woff");

}

@font-face {

font-family: "XTypewriter-Regular";

src: url("/assets/events/homoween/fonts/XTypewriter-Regular.woff") format("woff");

}

@font-face {

font-family: "SpecialElite-Regular";

src: url("/assets/events/homoween/fonts/SpecialElite-Regular.woff") format("woff");

}


@font-face {

font-family: "Burbank Small Medium";

src: url("/assets/events/fistmas/fonts/Burbank-Small-Medium.woff2") format("woff2"),

	 url("/assets/events/fistmas/fonts/Burbank-Small-Medium.woff")  format("woff"),

	 url("/assets/events/fistmas/fonts/Burbank-Small-Medium.ttf")   format("truetype");

}


@font-face{

font-family: "Plakat-Fraktur";

src: url("/assets/events/fistmas/fonts/Plakat-Fraktur-Black.woff") format("woff");

}


to add the fonts just do

body, p, etc {

font-family: "Plakat-Fraktur";

} and be sure that if it isn't a websafe one to add the font face with it

@font-face{

font-family: "Plakat-Fraktur";

src: url("/assets/events/fistmas/fonts/Plakat-Fraktur-Black.woff") format("woff");

}

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.