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