How do I import fonts to my web pages? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

How do I import fonts to my web pages?

Hey, by the question alone... I'm sure you can tell that I am an amateur. hehe but that aside, I'm using Microsoft's code writer to build my first website, but when testing on chrome, I get this Basic generic font that looks crappy and amateurish... I downloaded some neat cool fonts that I like but I don't know how to port them to the site... Any tips? thanks

13th Feb 2017, 1:30 PM
Lord_Aku
Lord_Aku - avatar
3 Antworten
13th Feb 2017, 1:48 PM
Branko Bunic
Branko Bunic - avatar
0
@font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ } this is the best way to import fonts because most browsers today will support this source: https://css-tricks.com/snippets/css/using-font-face/
22nd Feb 2017, 11:26 PM
Melvin2204old
Melvin2204old - avatar
0
thank you for the answers guys. trying them
23rd Feb 2017, 4:37 AM
Lord_Aku
Lord_Aku - avatar