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