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