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