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