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