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