Web Design 2020, Part 2
Aug. 25th, 2020 08:51 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
So, yes, I started relearning web coding this afternoon. The first "class" runs about two hours total, but it's broken down by the course producers into 2- to 10-minute chunks. That makes it easier to study and work through. Would any of you recommend the Mozilla Foundation's developer tutorials as another resource?
no subject
Date: 2020-08-26 01:18 pm (UTC)no subject
Date: 2020-08-26 01:27 pm (UTC)no subject
Date: 2020-08-26 02:23 pm (UTC)They have absolutely stunningly amazing education available for free. Highly recommended.
no subject
Date: 2020-08-26 02:28 pm (UTC)And let me know if you find a web coding course, I might be interested in that. I could use a refresher, my CSS skills are pretty weak.
no subject
Date: 2020-08-26 01:55 pm (UTC)Web coding is usually a combination of technologies; what's on the server and what gets sent to the user's browser when they go to a server's webpage.
The entire combination is known as a 'stack' or 'webstack'. What it is composed of is up to the development team and is limited by the technologies that exists out there. For instance, at work here, we use a php-msqli-html-javascript stack (pretty common), with some frameworks to organize and focus our code development.
So, what are they starting you on?
no subject
Date: 2020-08-26 02:13 pm (UTC)no subject
Date: 2020-08-27 04:48 am (UTC)Styles refers to CSS (Cascading Style Sheets) which is a script language that all browsers have to some degree that effects the browsers' rendering engine and can be *very* powerful. It works on a hierarchy of selection rules to target groups of elements (elements, classes, id's and lastly, style tags) to make sweeping layout and design changes to a webpage. Do pay attention to it and for an example of a CSS design framework, check out twitter's bootstrap which is an *incredibly* popular design framework.
no subject
Date: 2020-08-27 08:38 pm (UTC)From what I've seen in the basic coursework I've done so far, there's style notations you can make within HTML, and then there's CSS as you explain it, which I expect to explore further in later courses...?
no subject
Date: 2020-08-28 04:14 pm (UTC)The HTML style tag accesses the same script as CSS and uses the same syntax; the hierarchy has the style tag override all other considerations. CSS sheets are loaded in the
head
of a page which define the style resources available and basic layout properties.no subject
Date: 2020-08-26 06:27 pm (UTC)