Use on the webTotal Use [ 6857 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d23e69e1b19067088b5a6ee1196aa43e?family=Mister+George" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/d23e69e1b19067088b5a6ee1196aa43e?family=Mister+George);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Mister George";
src: url("https://db.onlinewebfonts.com/t/d23e69e1b19067088b5a6ee1196aa43e.eot");
src: url("https://db.onlinewebfonts.com/t/d23e69e1b19067088b5a6ee1196aa43e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d23e69e1b19067088b5a6ee1196aa43e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d23e69e1b19067088b5a6ee1196aa43e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d23e69e1b19067088b5a6ee1196aa43e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d23e69e1b19067088b5a6ee1196aa43e.svg#Mister George")format("svg");
}
2CSS rules to specify fonts
font-family: "Mister George";