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