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