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