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