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