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