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