반응형
반응형
본문 바로가기

front-end4

무료 부트스트랩 템플릿 다운로드하는 방법 무료 부트스트랩 템플릿 다운로드하는 방법 웹 개발 보다 기능에 우선순위를 두고 싶을 때는 템플릿을 다운 받아서 시간을 절약하자. 1. Bootstrap 템플릿 무료 다운로드 사이트 #01 https://startbootstrap.com/ Free Bootstrap Themes, Templates, Snippets, and Guides Start Bootstrap develops free to download, open source Bootstrap 4 themes, templates, and snippets and creates guides and tutorials to help you learn more about designing and developing with Bootstrap. startboo.. 2021. 3. 14.
Responsive Website Development and Design Specialization Responsive Website Development and Design Specialization www.coursera.org/specializations/website-development#courses Responsive Website Development and Design Offered by 런던 대학교. Responsive web design is all about creating the best user experience regardless of whether a user is accessing your site from a desktop computer, a mobile phone, or a tablet. This Specialisation covers the basics of mod.. 2021. 1. 10.
[JavaScript #02] Functions [JavaScript #02] Functions 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // Greeting function function greeting(name, time) { console.log('Good ' + time + ', ' + name + '!'); } // Calculating cube function function cube{number) { return number * number * number; } //executing greeting function greeting('John', 'Morning'); //prints out "Good Morning, John!" //executing cube function console.log(cube(2)); /.. 2020. 12. 13.
[JavaScript #01] Object [JavaScript #01] Object 1 2 3 4 5 6 7 8 let collegeStudent = { name: 'John'; age: 23; major: ComputerScience; minor: Management; }; console.log(collegeStudent.age); We just created an object named 'collegeStudent.' It has four different properties; name, age, major, and minor. At line 8, its code will print out "23" as an integer type. We will look further later when we deeply get into Object-Or.. 2020. 12. 13.

반응형