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