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