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