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