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