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