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