[ index.html ] → LogIn page's html part
Added a Wifi, Battary, and lightening Icon
(= Completed the to-do list)
1. Used heroicons.com and .svg file [📌commit]
2. Changed to using FontAwesome and <i>
tag [📌commit]
Made welcome header, and login form [📌commit]
(= Completed the .html of welcome-login page)
Named elements following BEM
conventions as closely as possible
[ styles.css ] → LogIn page's css part
font-family
propertyBEM
alt + click
alt + ↕
link.css + enter
<link rel="stylesheet" href="style.css">
git commit --amend -m "message"
e.g.
<i class="fa-solid fa-battery-quarter fa"></i>
<i class="fa-solid fa-battery-quarter fa-lg"></i>
<i class="fa-solid fa-battery-quarter fa-2x"></i>
Status-bar has 3 div columns.
The first and last div columns should be aligned to each corner.
and the second div column should be in the center.
so, I write display: flex;
justify-content: between;
on status-bar CSS block.
❗but, the second div column wasn't in the center.❗
↓
The cause was that the widths of the columns were all different. I didn't declare those widths.
🔅 so, I set width: 33%
for each three div columns. 🔅
I spent much more time learning and searching than actually coding, again.
Thanks to CSS, my result has improved a bit.
I always think the substance is important.
But, It seems that appearance is important as well.
I started to think that someone who produces beautiful and aesthetically pleasing results might be chosen in the frontend job market, instead of clean code maker.
This led me to consider that people majoring in visual design might have an advantage over computer science majors.
Someone who knows what is beautiful.
🐣🐣🐣