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