Question:
Which program should I use to write and execute my newly learned HTML and CSS?
Yulian
2015-01-10 03:24:25 UTC
I just finished a course on codecademy about HTML and CSS but now I dont know where to start. I dont know which program to use, all the ones I've searched for have automatic drag and drop elements thats not really fun and pointless. I tried notepad of course but I cant link my css with the html, so all this course was pointless if I cant use it.

Sorry if it sounds nooby but I honestly just started getting in to this.
Seventeen answers:
anonymous
2015-01-10 23:47:29 UTC
Actually it sounds like you have not learned a single thing.

Just use Notepad++ as your HTML and CSS editor.



"I tried notepad of course but I cant link my css with the html, so all this course was pointless if I cant use it."



Well of course not, that's not what does the linking, it's browser that does the linking, provided you coded correctly in the first place.
?
2015-01-10 13:29:10 UTC
Hi,



I think you shouldn't care that much about text editors. For now, it might be better improving your knowledge on HTML and CSS and how they work together.



I recommend that you read a book called "Head First HTML and CSS (2nd Edition)" and work through this book with Notepad (the one that came with Windows) or TexEdit (if you have a Mac).



From there on, you can change your text editor for a cool, fancy IDE, which will provide a lot of tools that facilitates your code work, allowing you typing with less effort.



Sorry for my english.



Good luck.
Jamie
2015-01-13 08:32:02 UTC
Like other users have suggested, Notepad++ is a great free text editor that I would recommend you try using, especially when it comes to writing HTML, CSS, JavaScript, PHP, and other web development related languages.



NotePad++ supports syntax highlighting for a variety of languages, including the ones above, as well as a variety of others, even including languages that are compiled, such as C, C++, Java, and a whole bunch of others.



If you are interested in trying Notepad++, you can download it for free from the link below.



http://notepad-plus-plus.org/



Another great text editor that you may want to try is Sublime Text 2, which also supports a variety of programming languages, and is also loaded with a bunch of great features.



http://www.sublimetext.com/



While you are able to evaluate and use Sublime Text 2 for free (for an unlimited period of time, at the time of this posting), it does cost $70 to purchase a license for personal use, which helps to support the developer so that they can continue to develop and update the software.



Best of luck and I hope I helped you!
Andy T
2015-01-12 20:52:10 UTC
Well that's two strikes against this CodeAcademy place, as if I were to use such service.



Given these are very simple interpreted texts I seriously doubt any usefulness of whatever course it is you took, those are so simplistic any text editor (just don't confuse and actually use a word processor)



On my choosen platform this is gedit; with code colouring, but lacking that feature Notepad of Windows do just fine for small writings; IDEs such as Eclipse or Visual Studio is overkill.



Two types of programs to this purpose, text editor to write the code and Web browser and keep refreshing to see the fruits of that labour.
?
2015-01-10 05:26:42 UTC
Try Netbeans for HTML5 and PHP.

https://netbeans.org/downloads/



For a pure editor, try Notepad++



To link your style sheet, put this in





The rel attribute is mandatory, the type one isn't.

This will work if a) the file is called "stylesheet.css" (exactly, including capitalization) and b) you save it next to the html file, so both are in the same folder.

If the styles still don't show up and you have refreshed the page in your browser, double-check the style rules. And use the inspector (best: FireBug for Firefox).



Also note that Notepad saves everything with a *.txt extension and Windows hides the extension of known filetypes. Which means if you save the stylesheet from Notepad as "stylesheet.css" without changing the file type setting to "all files" first, the file will be saved as "stylesheet.css.txt" and display as "stylesheet.css" in Explorer. And consequently the link won't work.
?
2015-01-12 08:25:51 UTC
The program is Notepad++take a Folder create HTML and CSS file than write a code HTML in Notepad under the section



than you can link with CSS file.
Warren Gaebel
2015-01-11 11:56:01 UTC
Any text editor will work fine for what you are doing. Just make sure you aren't using a different type of editor. A word processor will cause you grief. An IDE, even if it calls itself an editor, will also cause you grief. Just a plain-vanilla text editor like notepad is all you need for what you're doing.
Nick
2015-01-10 03:43:19 UTC
Microsoft Visual Studio 2013 Community Edition.



It's overkill for html and CSS only but once you get into other languages it is a really nice IDE
MrAlex6204
2015-01-11 22:56:50 UTC
use sublime is the best even more that notepad++

and for css search in google for a preprocessor of css
Albert W
2015-01-10 17:07:41 UTC
Hi there,

My personal favorite html editor is Coffeecup free html editor...http://www.coffeecup.com/free-editor/

It is a free html editor with a code view and design (page) view also it is easy to view in any browser on your computer.

There are suggestions for proper coding and error checking.

Hope this helps,

Al
?
2015-01-10 03:25:35 UTC
What do you mean you can't link it?

Everything you do with HTML and CSS should be something doable with notepad and your resources (aka images).
?
2015-01-10 06:35:56 UTC
Using Notepad++ as text editor is the first and proper way to learn coding. Congrat's for that!

To test your code, your best bet is to set-up your computer as a server, using xampp.

Go to apachefriends.org, download and install xampp.

Load your pieces of code in the folder c:\xampp\htdocs\mysite, start apache, start your browser and put "http://localhost/mysite" in the address bar!



BTW: the link to css must be in the head of your "index.html" file:

like:





...





Installing xampp will offer you the advantage of being able to go much further in learning, since you will add javascript, php and mysql (and more!)
Greywolf
2015-01-10 03:42:09 UTC
Bluefish, Geany, or Notepad++ (all free, all highlight syntax, and all can invoke a browser to show the result.
?
2015-01-12 11:11:45 UTC
use Notepad++ or adobe Drimwaver
anonymous
2015-01-10 03:34:25 UTC
Dreamweaver
millosh
2015-01-10 13:27:06 UTC
WeBuilder. It supports everything you wil lever need.
Ajay D
2015-01-27 05:53:24 UTC
I use komposer to save time. it is free


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...