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