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