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