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