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