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