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