My friend told me that you can learn everything about html & css in less than 20 mins

is this true?

Other urls found in this thread:

w3schools.com/html/default.asp
archive.is/HpRPX
twitter.com/AnonBabble

Pretty much.

yep, you can start with: w3schools.com/html/default.asp and just skimp through

That picture is unreasonably arousing

Everything to make a simple website?
Sure, 20 mins.
Everything to make your simple website work on most browsers without everything fucking it up?
About 2 years of hard work.

You don't even need to learn HTML nor CSS, you just need to figure it out.
With some autism I was able to rice my site:
archive.is/HpRPX

or 5 minutes on google to find a template you like, and then 2 hours messing with the code to get a grasp of how everything works.

Yes, it's not a programming language

Google "Front End Developer's Handbook 2017" it has everything you need to know and is free

No, there's more to know about html&css than what you can learn in 20 mins

I'll teach you in 5 seconds.
HTML:


CSS:
match-all-elements{
rule: value;
rule2: value;
}
.class{
/* statements */
}
#id{}
*{
/* anything matches */
}
a, b{
/* both a and b */
}
a b{
/* all b in a */
}
a > b{
/* b with a parents */
}
a[attribute]
[attribute=value]
:pseudo-selector

CSS is actually a turing-complete programming language

Unironically great answer.

If you have some inkling of competence, yes.

There's a module called "fundamentals of HTML" at my uni. Are they gonna teach me HTML for a whole semester?

You can learn the syntax, but I doubt you'll create anything worthwhile with that knowledge.

Who is this nut slut?

html?

maybe...

css?

lolno

they'll teach you nothing but garbage and bad design.

possibly even table layouts (cancer)

Some team made the original mario game with the ladders using only css n html, so u could play it n sht

One thing to add:

a.b {
/* all a that has class b */
}

Madoka

yeah that's true OP

Everything? No. Basics? Yes.

Bootstrap or some skeleton CSS will help make your page look 100x better with a proper grid system and small CSS improvements. With them, you an hammer out a site in fucking minutes.

Along with Flask, I dev utility sites for myself within a few hours.