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