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