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