사용자 도구

사이트 도구


tag:fonts

TAG: Fonts

문서날짜사용자설명
2021/03/08 19:28 오션 CSS Fonts * description : CSS Font, Font-family, web safe, style, size, Google, Pairings, Shorthand * author : 오션 * email : shlim@repia.com * lastupdate : 2021-03-08 Source of the article * CSS Google Fonts CSS Google Fonts HTML
2021/04/09 18:17 오션 HOW TO Google Fonts * description : How to - Google Fonts * author : 오션 * email : shlim@repia.com * lastupdate : 2021-04-09 Ref How to - Google Fonts 예제 <!DOCTYPE html> <html> <head> <title>Google Fonts</title> <link href="https://fonts.googleapis.com/css?family=Sofia" rel="stylesheet"> <style> body { font-family: 'Sofia'; font-size: 22px; } </style> </head> <body> <h1>Sofia</h1> <p>Lorem ipsum dolor …