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