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