woo. (via codecademy)what should my first website be?and what websites are good for quick review?
You can expand beyond what you learned at Codecademy with w3schools ( http://www.w3schools.com/ )Also, try out Javascript while youre at it on CA, if you want to make interactive webpages
make a website for blockland or something i guess
Learn JavaScript & make scripts for blf like uncle Steve.
I'm already at like 26% completion of learning that :)
Nice jobI did CSS, HTML, PHP, Javascript, and jQuery (Its not a language by itself, rather its a Javascript based library)It really comes in handyAnyway, good luck with your developer skills
I'm still not too sure how to put user scripts and JavaScript together to modify websites
// ==UserScript==// @name Bigger Quick Reply Box// @namespace setro.org// @version 0.1// @description bigger is better// @author Setro// @match http://forum.blockland.us/index.php?topic=*// @grant none// ==/UserScript==var quickReply = document.getElementsByName("message")[0]; // Returns an array of every element with the "message" name attribute, just like our quick reply box. I can't think of any instance where a textarea would be used in a topic besides quick reply so we're just going to use the first index.quickReply.style.height = "150px"; // Set the style height as 150px.
dreamweaver is super unnecessary, sublime text or even notepad++ will suit you fine I had to use dreamweaver for a class once, it's atrocious