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