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