I'm a new chum, getting ready to jump into e-business. I've learned the basics of html from an online course. In it, we were warned not to use website building tools for the following reasons:
- If you rely on a Web development tool to write your HTML for you, you only know as much about HTML as your tool does. When new features and versions of the HTML language come out, you won't be able to use them without upgrading your tool.
- If something on your page breaks and your tool can't fix it, you won't be able fix it either. Sometimes tools do strange things and produce strange HTML code. If you don't know HTML, you won't be able to change the tool's output and fix your Web page.
- Web development tools often write HTML that works better in one browser than in another, or that looks great when you preview it in the development application, but not in a real-life browser. That's not good if you want to reach a wide audience. In most cases, you want your HTML to be browser-agnostic, which means that you want to use standard HTML.
- HTML is really easy to learn. You're not learning a programming language, you're learning a markup language, and the two are very different. HTML is intuitive and you'll find that it makes sense almost immediately. As a bonus, what you learn about HTML will help you learn other markup languages -- like XML -- later on.
Comment