In previous article we discussed what is JavaScript and now lets start learning. In this article, we will get down to the real basics, looking at how to work with…
With CSS you can change the size and shape of the text with a range of properties. Let’s talk about that. Font-family Font-family specifies font itself like Times New Roman,…
CSS lets you use 16,777,216 colors. You can simply write color name, use RGB (red/green/blue) or hex code. For example following values gets you the same result: red rgb(255,0,0) rgb(100%,0%,0%) #ff0000…
Selectors are the names given to styles in internal and external CSS. For each selector there are properties written inside curly brackets like - color, font-size or background-color.
Previously I talked about HTML (Hypertext Markup Language), coding language that is the foundation for all web development. If HTML is the first language to learn when starting to build…