일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- jQuery
- effect
- javascript
- 비전공 개발자
- SWIFT
- 백엔드
- css3
- ipad
- html5
- Animation
- front-end
- 자바스크립트
- 비전공자
- react
- image
- keyframes
- hover
- xcode
- php
- 풀스택
- 애니메이션
- CSS
- 개발자
- HTML
- iOS 개발자
- button
- iPhone
- MAC
- IOS
- 프론트엔드
- Today
- Total
목록date (3)
비전공자 개발일기

Countdown Till 2023 00 Days 00 Hours 00 Minutes 00 Seconds :root { --color-white: #ffffff; --color-black: #202020; --color-glass: rgba(255, 255, 255, 0.05); --color-shadow: 0 0 25px rgba(0, 0, 0, 0.5); } * { padding: 0; margin: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; color: var(--color-white); } body { background: url(background-img.jpg); background-repeat: no-repeat; back..

DATE CALCULATOR How many days are there between two dates? (Change a date to automatically calculate the difference) Start date End date Time elapsed: h1 { font-size: 2.5em; font-weight: 700; text-align: center; } header > p { text-align: center; font-size: 1.5rem; font-weight: 700; } div { text-align: center; border: .1em solid #000; } p { font-size: 1.4rem; font-weight: 700; } body { backgroun..

* { margin: 0; padding: 0; box-sizing: border-box; } .container { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #EFEFEF; } .container .date { font-size: 24px; font-weight: 500; } .container .date#printTime { color: #E74C3C; } .container .date#printDate { color: #2ECC71; margin: 0 20px; } .container .date#printDay { color: #9B59B6; } let date = ..