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