일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- css3
- xcode
- hover
- javascript
- CSS
- 비전공 개발자
- IOS
- front-end
- 프론트엔드
- SWIFT
- 자바스크립트
- html5
- effect
- iPhone
- button
- react
- 백엔드
- jQuery
- ipad
- keyframes
- iOS 개발자
- HTML
- MAC
- php
- 풀스택
- 비전공자
- 애니메이션
- image
- 개발자
- Animation
- Today
- Total
목록to do list (3)
비전공자 개발일기

to do list Add Insert a new task @import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Lato:ital,wght@0,300;0,400;1,300;1,400&display=swap"); * { margin: 0; padding: 0; outline: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; user-select: none; } html, body { width: 100%; height: 100%; } a { text-decoration: none; color: inherit; } body { displa..

import Foundation struct Task { var title: String var done: Bool } import UIKit class ViewController: UIViewController { @IBOutlet weak var tableView: UITableView! @IBOutlet var editBTN: UIBarButtonItem! var doneBTN: UIBarButtonItem? var tasks = [Task]() { didSet { self.saveTasks() } } override func viewDidLoad() { super.viewDidLoad() doneBTN = UIBarButtonItem(barButtonSystemItem: .done, target:..

My Special To Do List Make awesome CSS Animation Go to Gym Make a iOS Application Swift, React Native, Next.js, Node.js body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #1A1E23; } .todo-list { display: flex; flex-direction: column; padding: 0 75px 10px 30px; background-color: #162740; border: transparent; } .todo-list .todo-list-title { padding..