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