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