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