2024-08-20, 07:27 PM
(2024-08-20, 07:05 PM)jennystreaming Wrote: I've been trying to replace the current font on my project with something similar to the Netflix font using CSS, but I can't seem to get it to work. Ultimately, I'm looking for a simple CSS snippet that I can just copy and paste. Any help would be greatly appreciated!
the CSS:
Code:
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
body {
font-family: "Martel Sans", sans-serif;
font-weight: 600;
}