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