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