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