Use on the webTotal Use [ 5258 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4ce21933dd0695b675a3cda722972fcc?family=Garbytta+Mondela" 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/4ce21933dd0695b675a3cda722972fcc?family=Garbytta+Mondela);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Garbytta Mondela";
src: url("https://db.onlinewebfonts.com/t/4ce21933dd0695b675a3cda722972fcc.eot");
src: url("https://db.onlinewebfonts.com/t/4ce21933dd0695b675a3cda722972fcc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4ce21933dd0695b675a3cda722972fcc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4ce21933dd0695b675a3cda722972fcc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4ce21933dd0695b675a3cda722972fcc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4ce21933dd0695b675a3cda722972fcc.svg#Garbytta Mondela")format("svg");
}
2CSS rules to specify fonts
font-family: "Garbytta Mondela";