Home / CSS Tips Generated By ChatGPT / Using @font-face for Custom Fonts in CSS Embed custom fonts in your CSS with @font-face, enhancing typography. Source Code @font-face { font-family: 'MyCustomFont'; src: url('fonts/MyCustomFont.woff'); } .custom-font { font-family: 'MyCustomFont', sans-serif; }