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