본문 바로가기
728x90

web16

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.
[django] 가상환경 설정, 프로젝트 생성, 앱생성 python -m venv myvenv 입력해주면 왼쪽에 myvenv 폴더가 생김 python -m venv '가상환경이름' source myvenv/Scripts/activate 가상환경 실행 source '가상환경이름'/Scripts/activate django-admin startproject firstproject 프로젝트 생성 django-admin startproject '프로젝트이름' 왼쪽바에서 폴더를 확인하면 프로젝트, 가상환경 순으로 생성됨 (매번 시작할 때마다 까먹어서 여기다 박제 ..) cd firstproject 경로 변경 cd '프로젝트이름' 이러고 앱만들어주려는데 에러 뜸 Traceback (most recent call last): File "manage.py", line 10.. 2020. 5. 6.
[django 첫걸음] Git Bash, VSCode, Python3.7 설치하기(링크) 1. Git Bash https://git-scm.com/ Git git-scm.com Download 2.26.2 for Windows클릭 2. VSCode https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud.. 2020. 5. 1.
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