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