반응형

Hello, world! 251

html 글자 강조 / 제곱 표시 하는법

1. 글자 강조 (body 에 적은 내용 주목)DOCTYPE html>html lang="kr"> head> link rel="shortcut icon" href="https://assets.nflxext.com/us/ffe/siteui/common/icons/nficon2023.ico" /> title>제목없음title> meta charset="utf-8" /> meta name="description" content="This is my website" /> head> body> I like to live in South Korea body>html>  결과 2. 제곱 body> p>2sup>5sup>p> body> 결과3. under 표시 body> p>I sub>lovesub> youp> bod..

1. HTML 2024.11.06

카카오로 공유하기 시 공유화면 이미지 설정하기

meta property="og:image" content="https://d1telmomo28umc.cloudfront.net/media/seo/home2.jpg"/> og:image 를 통해 카카오톡 공유하기 이미지 설정 가능함.   결과  이미지 하단의 descriptipn은 og:description 으로 표현 가능meta property="og:description" content="코딩은 진짜를 만들어보는거야!. 실제 구현되어 있는 서비스를 한땀 한땀 따라 만들면서 코딩을 배우세요!"/>

1. HTML 2024.11.05

head 태그 안의 <link rel ="shortcut icon" href=" " /> 를 통해 shortcut icon 이미지 설정하기

DOCTYPE html>html lang="kr"> head> link rel="shortcut icon" href="https://assets.nflxext.com/us/ffe/siteui/common/icons/nficon2023.ico" /> title>제목없음title> meta charset="utf-8" /> meta name="description" content="This is my website" /> head> head 태그 안에  태그를 통해사이트의 shortcut icon 이미지를 등록할 수 있다. *rel= relationship    결과.  아이콘 이미지의 사이즈를 설정하고 싶다면 sizes 추가하기.  link rel="shortcut icon" sizes="16x16 32x..

1. HTML 2024.11.05
반응형