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