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