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