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