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