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