hi i want to learn HTML & CSS. i visited lot of sites. i learn some. but i fully confused. give me some notes of html and css. by the by what's the difference between html & css. fully confused. fully confused. fully confused.
HTML and CSS are not the same thing, they work together to style a website. HTML is what allows the browsers to see the info on a website, css is what makes it look nice. You're not going to get the answer you are looking for in a simple forum post. I would recommend getting 'HTML/CSS for Dummies' and reading it front to back. Try to understand it and stop being confused.
For tutorials regarding web programming, or anything related to web design the best blog is vandelay designblog or w3schools.com
Well, don't be impatient. First you need to learn basic HTML & CSS from w3schools.com, it will be very helpful.
w3schools.com html = hypertext markup language (wraps text and other content, viewable website) css = cascading style sheet (adds attributes -alignment, bg-color, text color etc to "divs" or sections of the viewable website / html document)
If you look at the source code for the website link in my signature you will see the html code: <h1>Website Design Bury St Edmunds</h1> Then look at the source code for the style sheet and you'll see the css that tells the browsers how to display the <h1> heading/what it should look like: h1 { font-family: Arial, Helvetica, sans-serif; font-size: x-large; color: #990000; z-index: 1; }
Hi there, First of all I applaud you for wanting to learn the basics rather than jumping straight into editors that can do the majority of it for you. Having a bit of an in depth knowledge of the subject can really help you to create some stunning websites but unfortunately HTML and CSS aren't languages that can be picked up instantly. It will take some determination and a lot of patience as you start to work through tutorials and gradually expand your knowledge on the subject. I would suggest online resources such as w3schools which has already been mentioned I believe. There are some fantastic walkthough tutorials on that site that literally hold your hand and take you through the process of improving your skills in these languages, all the while explaining what the code that you are typing actually does. I wish you the very best of luck in your pursuit and I hope that you find some tutorials that really help you to learn these languages successfully.