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