I’m not gonna front. I’ve used it quite a few times

But it doesn’t help you retain information. I ask questions to get examples so I can see how the shyt looks.
I’m not gonna front. I’ve used it quite a few times
After 18 days, I’ve pretty much mastered HTML and CSS,
Practice Frontend/UI Dev
Momentum. And it see if this is something that would interest me to begin with. And I’m teaching myself so I’m also developing learning habits.As a one time web dev I'm honestly not sure there was a real purpose to learning basic HTML and CSS. Javascript, JQuery, and frameworks like Bootstrap and Bulma pretty much negates basic HTML and CSS. But I guess maybe it is good to know the very basics.
As a one time web dev I'm honestly not sure there was a real purpose to learning basic HTML and CSS. Javascript, JQuery, and frameworks like Bootstrap and Bulma pretty much negates basic HTML and CSS. But I guess maybe it is good to know the very basics.
Already have.OP, add The Odin Project to your list of learning resources.
Come on now. HTML is super simple.
CSS, is easy too once you get the structure down.
Then when o built my first demo page I wanted a nav bar. So I watched videos until I found the one I wanted, watched it and typed in the code. Then I would change attributes to fit want I wanted.
As far as everything else like, let’s say I want I side nav bar, they pops out. I’ll just go on TikTok or YouTube or Google and just use what they made and change the code to fit what I want.![]()
If they're that easy, then you wouldn't need to go to youtube and such to do a navbar.
But I'm glad you're familiar enough with them to manipulate the code.
use std::sync::mpsc::channel ;
fn main() {
let (tx, rx) = channel() ;
thread::spawn( move|| {
let a = "You're gay!".to_string() ;
for i in a.chars() {
tx.send(i).unwrap() ;
}
}) ;
for _ in 0..100 {
match rx.recv() {
Ok(t) => println!( "{t}" ),
_ => break
}
}
}
I was coding as a hobby about a year ago, but I stopped to focus on school
This thread is inspiring me to jump back in the game