SPIT's profile picture

Published by

published
updated

Category: Web, HTML, Tech

need help with coding fonts please help me

i've been trying to change the font of my page but it just won't work. i've tried copying various codes from websites and other people's layouts but it just doesn't work.

how the hell do i change it??

i want my page to have this specific font:

https://fonts.google.com/specimen/Audiowide?query=wide

is that font even possible to add?

help

edit: figured it out :D


2 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

angel

angel's profile picture

i don’t know if this comment is even going to show up right but maybe try this? also you have to change the font family of your page to the font, not just this code if maybe that’s the problem


@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');


Report Comment



oh it almost showed up right, it was meant to be between the style things

by angel; ; Report

how/where do i see/change font family?

by SPIT; ; Report

this also has to be between a style thing, the p is for paragraphs so like regular text and h’s are for headers so you can change them separately if you want
p{
font-family: 'Audiowide';
}
h1,h2,h3,h4,h5 {
font-family: 'Audiowide';
}

by angel; ; Report

thank you, you really are an angel

by SPIT; ; Report