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