Latest solutions
Latest comments
- @9Galaxy@LLLEEXX
You might want to explore CSS Flexbox and CSS Grid, as they are excellent tools for positioning elements and enhancing the responsiveness of your website.
- @HakanaiKC@LLLEEXX
What I did was import the font url in my css file like this: @import url('https://fonts.google.com/specimen/Overpass');
then I select the my html body and then apply the font by typing this: body{ font-family: 'overpass', sans-seriff; }
Marked as helpful