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