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