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