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