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