Codecademy front-end engineer course
DAY1
- Introduction: Web development Fundamentals
- What is the internet?
- What is web development?
- What is Front-end development?
- HTML Markup
: HTML separates content and annotation by using HTML tags
- HTML elements
- Common tags
: heading, paragraph, anchor, button
* basic value structure is
value="name"
- Adding Links
<a href="link">Learn to Code!</a>
- How to link css file
<head>
<link rel="stylesheet" href="style.css">
</head>
- Summary
HTML | structures website contents |
CSS | applies styling to websites |
Javascript | add interactive to websites |
SQL(structured query language) | figures out what kinds of data is stored and retrieved |
- 관련 article
https://codeburst.io/how-to-become-a-web-developer-101-5db4f11e611
Web Development For Beginners
We all use the web every single day, but how many of us actually know how it works or the skills necessary to become a web developer?
codeburst.io
- 앞으로 공부할 Roadmaps
Developer Roadmaps
Community driven roadmaps, articles, guides, quizzes, tips and resources for developers to learn from, identify their career paths, know what they don't know, find out the knowledge gaps, learn and improve.
roadmap.sh
반응형
'Web' 카테고리의 다른 글
[CSS] 7) 색 표현법, 색 넣기 (#HSLA # RGB) (0) | 2021.01.19 |
---|---|
[Front-end] 6) Github로 웹페이지 만들기/Semantic CSS (0) | 2021.01.19 |
[Front-end] 5)CSS 비주얼 규칙/ Visual Studio Code로 웹페이지 만들기 (0) | 2021.01.17 |
[CSS] 4)CSS 구조/선택자 Selector (0) | 2021.01.17 |
[HTML] 3)HTML 구조/ Semantic HTML (#HTML tags) (0) | 2021.01.15 |