본문 바로가기
728x90

web/HTML·CSS5

html 이모지 코드표 https://www.w3schools.com/charsets/ref_emoji.asp HTML Emoji Reference Emoji Unicode Reference Emojis For Web. If you want any of these emojis displayed in HTML, you can use the decimal (dec) or hexadecimal (hex) reference found in the table below. Example 🦁 I will display 🦁 www.w3schools.com Blog 💗 이 사이트에 있는 두번째 코드앞에 &#x를 붙여 사용하면 된다 좀 더 귀여워진다... 2020. 7. 21.
codecademy(코드카데미) HTML정리 4 Table - 데이터 표시 행 추가 데이터 추가 행과 열에 제목 추가 테두리의 두께 Out of Town 열 두개 자리 차지 rowspan="2" 행 두개 자리 차지 열제목(열머리글) 분류해줌 맨밑행에서 total 보여주는 용도로 분류해줌 css에서 font size나 color 변경가능. 2020. 4. 25.
codecademy(코드카데미) HTML정리 3 HTML 파일 설정 HTML 문서의 맨 앞에 항상 을 포함해야함. 은 항상 안에 있음. 는 링크 연결. href에 url주소 넣고 그 뒤는 나타낼 텍스트 씀. The Brown Bear target="_blank" 는 새창으로 url연결됨. In the example above, setting the target attribute to "_blank" instructs the browser to open the relevant Wikipedia page in a new window. Brown Bear index.html이라는 파일을 현재폴더에서 찾음. Brown Bear는 나타내는 텍스트.(이거 누르면 그 파일로 연결) The ./ in ./index.html tells the browser to lo.. 2020. 4. 23.
codecademy(코드카데미) HTML정리 2 줄바꿈. 순서 없는 리스트. 리스트 추가. 순서 있는 리스트. 여기에 을 쓰면 1,2,3으로 표시됨. 이미지 나타냄. 이미지 url필요. /는 생략가능. 이미지에 대한 설명 src="https://content.codecademy.com/courses/freelance-1/unit-1/lesson-2/htmlcss1-vid_brown-bear.mp4" width="320" height="240" controls> 는 끝태그 필요. 사이즈도 설정 가능.Video not supported 넣으면 비디오 나타내지 못할 경우 뜸. The text, “Video not supported”, between the opening and closing video tags will only be displayed if .. 2020. 4. 23.
codecademy(코드카데미) HTML 정리 1 Hello 여기서 는 시작태그, 는 끝태그, Hello는 컨텐츠이다. * 글씨 크기 순서 : h1>h2>h3 이것은 다 에 속해있음. 는 페이지의 섹션을 나눔. One of the most popular elements in HTML is the element. is short for “division” or a container that divides the page into sections. 에 속성을 추가하는 id. =>콘텐츠 식별 편리함. One commonly used attribute is the id. We can use the id attribute to specify different content (such as s) and is really helpful when you use an .. 2020. 4. 22.
728x90