TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Online resources for beginner web dev/design

8 pointsby antokoabout 10 years ago
My stepson (19, no college) is going to explore web development and design. He doesn't have any prior experience. I'm looking for free online resources for him to get some exposure. I was thinking html,css,jQuery on codecademy to start with, and then introducing JavaScript. What else is out there? Is there anything similar for the design side of things?

4 comments

briandrumabout 10 years ago
For a free, high quality introduction to HTML and CSS, take a look at <a href="http:&#x2F;&#x2F;learn.shayhowe.com" rel="nofollow">http:&#x2F;&#x2F;learn.shayhowe.com</a>.<p>A few others I’m aware of but less familiar with:<p><a href="http:&#x2F;&#x2F;tutorials.codebar.io" rel="nofollow">http:&#x2F;&#x2F;tutorials.codebar.io</a> <a href="http:&#x2F;&#x2F;howtocodeinhtml.com" rel="nofollow">http:&#x2F;&#x2F;howtocodeinhtml.com</a> <a href="http:&#x2F;&#x2F;learnlayout.com" rel="nofollow">http:&#x2F;&#x2F;learnlayout.com</a>
评论 #9543464 未加载
lollipop25about 10 years ago
A good place for documentation is MDN (Mozilla Developer Network) <a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web</a>. They have extensive documentation with regards to web technologies. I suggest he read up about HTML first, getting the first few basic elements on the page. Then he can move on to CSS to style up the page.<p>At this point, you can practically build basic webpages with just HTML and CSS. From here, you can take 2 paths: A graphics designer or a front-end developer.<p>A graphics designer leans more to design rather than building apps. This requires a basic of jQuery, but mastery of Photoshop. A good place to learn is reading articles from Smashing Magazine <a href="http:&#x2F;&#x2F;www.smashingmagazine.com&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.smashingmagazine.com&#x2F;</a><p>A front-end developer leans more to app-building rather than design. This requires knowledge of JavaScript libraries and best practices. For this, select your basic set of frameworks and master them. Suggestions range from jQuery, Bootstrap, to full-fledged frameworks like Ember and Angular.
评论 #9543244 未加载
AJArabout 10 years ago
You can check out Treehouse. It&#x27;s not free, but a great value for the money since you get access to their full library.<p><a href="http:&#x2F;&#x2F;teamtreehouse.com&#x2F;tracks" rel="nofollow">http:&#x2F;&#x2F;teamtreehouse.com&#x2F;tracks</a>
评论 #9543151 未加载
tmuirabout 10 years ago
I really like www.w3schools.com They go through HTML, CSS, JS, JQuery, and a ton of other stuff. I&#x27;m sure they&#x27;re not the only site that does this, but I found the &quot;Try it Yourself&quot; feature to be extremely helpful. Every single concept has an built in editor with example code&#x2F;markup, so you can see it in action, change it, break it, whatever.