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