Magic inspired Social Share Button -- https://codepen.io/codingstella/pen/gOQqaWo https://codepen.io/codingstella/pen/gOQqaWo Magic inspired Social Share Button ... codepen.io https://codepen.io/codingstella/ Coding Stella on CodePen Amazing CSS Animation That You Have Never Seen 🤒 codepen.io *{ margin:0; padding:0; box-sizing:border-box; } body{ display:flex; align-items:center; justify-content..
The days are long gone when a viewer’s attention is quickly captured by a simple and plain HTML website. The trend has changed and moved more towards animation and graphics with several upgrades to technology and design. When you develop a website, it requires both creative and technical skills. Things like layouts, animations, and graphics can greatly overhaul your website’s look and feel. As y..
[HTML] 24 Powerful HTML Attributes Every Senior Web Engineer Should Master! https://javascript.plainenglish.io/24-powerful-html-attributes-every-senior-web-engineer-should-master-ad8a4df0776e 24 Powerful HTML Attributes Every Senior Web Engineer Should Master! There are many HTML attributes, in addition to some basic attributes, there are many useful and particularly powerful attributes; javascr..
autofocus 문서가 로드되면 autofocus 속성이 들어간 input 태그에 자동으로 focus가 이뤄집니다. required 회원가입을 할 때 필수항목을 입력하지 않으면 경고 문구가 뜨고 넘어가지 않죠? 원래는 스크립트로 구현해야 하는데 HTML로 쉽게 할 수 있는 방법이 바로 required 속성입니다. input태그 모두 required속성을 주겠습니다. 그리고 한 칸을 비운채로 submit버튼을 누르면 어떻게 될까요? 다음 placeholder 고객이 회원가입을 할 때 해당 입력창에 뭘 입력해야 하는지 힌트를 주는 속성이 바로 placeholder입니다. 물론 응용해서 회원가입 뿐만 아니라 다양한 용도로 사용할 수도 있겠죠? readonly 입력은 받지 않고 읽기와 복사만 가능한 속성입니다..
웹폰트 사용하기 웹사이트의 주소를 복사하여 스타일 시트나 html의 ‘ 대부분의 모던 브라우저에서 지원하는 woff 글꼴 파일을 먼저 선언하고 ttf파일은 그 다음에 선언한다.(ttf가 용량이 크기 때문에) woff파일의 형식을 지원하는 브라우저는 woff를 다운로드 하고 굳이 ttf는 따로 다운로드 하지 않습니다. 외부 스타일 css파일로 연결할 경우 html파일의 부분에 외부 스타일 link을 연결해 놓고 css파일에는 다음과 같이 입력합니다. @font-face{ font-family :‘글꼴이름‘; src : local('글꼴명‘), url('경로명/글꼴이름‘) format(’파일유형‘), url('경로명/글꼴이름‘) format(’파일유형‘), url('경로명/글꼴이름‘) format(’파일유형..