Learn CSS icons in 8 minutes! 🐤

preview_player
Показать описание
#CSS #course #icons

CSS icons tutorial example explained

Рекомендации по теме
Комментарии
Автор

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bro Code</title>
<link rel="stylesheet" href="style.css">
<body>

<div class="icons">
<a href="">
<i class="fa-solid fa-house fa-5x"></i>
</a>
<i class="fa-brands fa-twitter fa-5x"></i>
</a>
<i class="fa-brands fa-youtube fa-5x"></i>
</a>
<i class="fa-brands fa-tiktok fa-5x"></i>
</a>
</div>

</body>
</html>

/* style.css */

.icons{
text-align: center;
}
.icons a{
text-decoration: none;
margin-right: 20px;
}
.fa-solid.fa-house.fa-5x{
color: hsl(0, 0%, 66%);
}

color: hsl(0, 0%, 76%);
}
.fa-brands.fa-twitter.fa-5x{
color: hsl(188, 100%, 50%);
}

color: hsl(188, 100%, 60%);
}
.fa-brands.fa-youtube.fa-5x{
color: hsl(0, 100%, 50%);
}

color: hsl(0, 100%, 60%);
}
.fa-brands.fa-tiktok.fa-5x{
color: hsl(0, 0%, 10%);
}

color: hsl(0, 0%, 30%);
}

BroCodez
Автор

Every time I watch one of your videos I hate my teachers. When I see how easy you make it for me to understand and really apply it right after I watch your video man, this got me nervous for real.Thank you man, you really help me….

MotionMedia
Автор

Bro Code is simply one of best - if not the best - channels on Youtube on programming language learning. The explanation is fairly simple, but at the same time profound and complete. I watch the videos from Brazil and I just love it! Alright, everybody. That's it! And become a fellow Bro! <3

oxenburguer
Автор

This video made me really happy. I'm finally at a stage where I can watch a video like this and know how to do all of it already; even if it is simple.

peaklegacy
Автор

Best teacher on the internet is back <3

Mrsniper-cdhx
Автор

Thx bro code! Will you make tutorials about Javascript frameworks like nodejs or react? Tbh you were the only teacher in my whole life that I learned something from! Keep the great work. Big fan of your videos! ❤️

adminpower
Автор

How do you insert logo in html and how do you resolve broken logo image that is not showing in the navbar?

jamesvictor
Автор

Bro please come up with streamlit tutorial from beginners to advance level

RahilKhan-zndn
Автор

I dont understand- when i find an icon on fontawesome and put it into my code, IT DOESNT SHOW UP (Brocode please help me)

MarkLazy
Автор

Can you please make a crashcourse on mojo and rust Thankyou

zakyvids
Автор

I was wondering why the hyperlinks were not working until I realized I had typed herf instead of href 🤦‍♀🤦‍♀.

sevanthishekar
Автор

No Twitter in this universe bro
Google : do you mean ' X ' ?

Vinz-Tamil
Автор

Bro please make tutorial on Typescript (Ts)

raitaskeen
Автор

I do the same thing but its not working

badwolf