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