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