[CSS] Day 1: The Beginning
생활코딩 WEB1 was tremendously helpful to create my super basic webpage https://kyeo2017.github.io/portfolio_proto/
But I want to make my webpage fancier no I would say more professional. The other day I had a conversation with my best friend who is a web designer and she told me about CSS. Originally I was going to skip this part and learn more useful back end developer language but I realize that this is necessary whether I want my goal is front end or back end develoer I should know.
Let's say if I want to change the font color to red, I would probably use <font color="red"></font> but what if I have too much workload?
CSS can fix this issue; style 이 디자이에 대한것
<style>
a {
color:red;
}
</style>
같은 성격의 것을 바꾸는것, 유지보수 편리하고 가독성이 좋아짐
<style>
a {
color:red;
text-decoration: none;
}
</style>
Before: No CSS code
text-decoration: none; <-- No underline
* What I learn from this
Selector --> a {
Declaration --> color (property):red (Value);
}