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