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