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