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