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