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