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