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