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