tags:

views:

169

answers:

5

I am looking for recommendations for a starting website to learn how to write HTML code

+5  A: 

This question seems a bit weird... what do you mean by "sandbox"?

Usually you simply practice writing HTML by using a text editor and opening the local file from the browser.

hop
Yes, but I was hoping to find a site that would give immediate feedback, rather than having to save and reload
Noah
there are text editors that support live previews of what you type.
hop
+2  A: 

start here at w3schools.com. They provide a niftly little sandbox with sample code for all your web design element questions.

le dorfier
yay! instead of having to save-and-reload, you just have to click one button! big win! :) -- and on the upside you lose every comfort a decent text editor might give you! double win!! (excuse my sarcasm... bad morning)
hop
It's probably hard for you to remember that far back, but when you're first learning HTML it sometimes helps to have a code fragment to start with that actually works. You're probably one of the lucky young guys whose first code *was* html.
le dorfier
+1 I still occasionally go back to w3schools when I forget something. Its not a place for the cool-kids to go, but its a great learning resource
Robert Gould
le dorfier... i don't even think of writing html as coding. but you misunderstood me! i'm not against examples, i'm against the online-editor-thingy
hop
w3schools is the ultimate starting point to many web related technologies.
Dror
+1  A: 

Notepad + any broswer - This works well for me. Just save your file to .htm

Or if you want, get FireFox or Opera, go to any site (say, stackoverflow.com or w3schools.com), view the source, edit away and then apply the changes. Don't worry, the changes only affect a single tab and doesn't changes anything on the web.

MrValdez
+1  A: 

Sandbox for HTML? you must be kidding.There are no chances of getting hurt even if your HTML goes wrong. So you don't need a sandbox.

Use any decent editor which gives a two-tab view for Source-code and Quick-view, and you are done. You can use MS Frontpage or EditPlus, both offer these features. You don't need to save to see the effect.

Please don't clog the bandwidth for just testing and debugging HTML. It ain't worth it.

Mohit Nanda
+1  A: 

Some things don't work with Javascript when served from file:// due to security protocols, and sometimes it can be too much of a pain trying to get a webhost up and running for experimenting with stuff.

http://www.webdevout.net/test

I have found to be a convenient playground tool, with the benefit when you mangle something up and you want help to work out what you did wrong you can post the link to somebody and they can see what you've done without you needing to worry about security, hosting, or firewalls.

Kent Fredric