I'm used to using only basic HTML with no style sheets or whatever they're called that cause your page to ignore all font tag specifications and things like that. I've had my website redone and now that it uses those style sheets it's a PITA to make even basic edits as it ignores the fonts and sizes specified in my font tags and the alignment seems to be random, the first line is left aligned while the next is sort of between right aligned and centered, and it ignored my <br> tags so it's all on one line. Where can I learn to get myself out of this mess and be able to add basic text to my website with the font, font sizes, alignments and line breaks that I want? Thanks
Well, you might try getting rid of any CSS that your site is using. In the source, look for something like Remove lines like that, and any inline css that may be there as well. Of course, the better way is to just bite the bullet and embrace CSS. Here's some help: http://www.w3schools.com/css/
The central dogma of using "modern" HTML, in my opinion, is separation of presentation and content. This is why font tags are the devil, and should be avoided. They define how something should look, but they're located in the jumble of your HTML files. Inflexible. Hard to track down and change. You can't make widespread changes either, because changing a font tag just changes the styles of what is contained in that one font tag. Instead, in CSS, slap a class on any range of fonts and you can change them on the fly, from a single file specifying only style/presentation, by editing a single line. <div class='whatever'> <p>Blah blah blah</p> <p>Lorem ipsum</p> <p>Blah blah blah</p> </div> Code (markup): div.whatever p { font: .... color: .... } Code (markup): It's beautiful. CSS is going to give you all the font, font sizes, and alignments that you want. But what you need to do is take away all the stuff that also tries to do the same thing, within the HTML files.
In my school I have a webpage design class, I also take desktop publishing. If you would like I could post thing things we learn and do in class and you can go by that. The class I take is really a college course but they have for high school students of "higher achivements".
Really i agree with you. w3schools.com is really good for any new trainer, and also its very usefull to learn CSS, jav script, PHP also...
You can try codecademy for interactive lessons on HTML, CSS, and even Javascript. It's a very user friendly site and great tool for learning web design and coding fast. Hope this helps
I too agree with others, as w3school is the best to learn modern HTML. and apart from that you can Google if you are looking for any particular information.
Modern HTML is HTML5 HTML5 will be the new standard for HTML.The previous version of HTML, HTML 4.01, came in 1999. The web has changed a lot since then.HTML5 is still a work in progress. However, the major browsers support many of the new HTML5 elements and APIs.
HTML 5 just adds a set of new features to HTML. It's not a totally different thing. So your friend does not lose by learning HTML. Actually she will need it, to use the HTML 5 features in web pages. The problem with HTML 5 and any developing standard, is browser support. Some browsers will support some features and other won't. Until the whole thing settles down, it will be some time. Also, do not forget, that there are millions of users using older browsers, without any support to any HTML 5 features. I found some titles that looked like good HTML5 references, but they seem to start there, assuming a prior knowledge of HTML. It would be confusing for her to read an HTML4 book, then to have to un-learn some of that when reading an HTML5 book.
Check out w3schools.com/html/html5_intro.asp to see some of the new things you can do with the proposed HTML 5 standards and elements. HTML 5 includes several new elements that give the website designer more tools that he can use to provide a better product such as the integration of rich media. It dosen't replace many of the standard HTML tags to which designers have become accustomed over the years. It isn't a waste of time to learn the same HTML tags that designers have used for years now. But, just in case, google "list of depreciated html tags" to learn which tags are going out of common use.
For the Morden website design and development require HTML5/CSS3 technique to use. Please find the perfect code using w3schools or hire web designers.
what i really think you should do is get rid of those font tags. Professionally(or better put - originally), font tags are supposed to be sparsely used - to mark-up special texts you want on your page and you don't need to use them everywhere and all the time. What i'll suggest you do is use span tags <span></span> to replace those font tags where you want your special text inline or use paragraph tags <p></p> where you want text on seperate lines. Also there's no need attaching styles to your page when you don't know which element/elements they actually affect. U can learn css on sites mentioned above they are good