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