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