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