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