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