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