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