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