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