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