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