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