Grasping the essentials + First Project😼

Today's learning:
First of all! Huge respect to Tim Bernes Lee  who is the founder of the World Wide Web. 

1. Hyper text is something that links to another page when clicked. 
2. HTML is called a mark-up langauge because the tags act as a markup. 
3. Tag + content = HTML element.
4. A Website can be made just with HTML. But it will be static without javascript.
5. There shouldn't be more than one <h1> tag and follow the chronological order of h1 to h6. No repetition.
6. Each paragraph tag <p> starts in a new line. 
7. Self closing or void tags like <hr/> and <br/>. 
8. <br/> must not be used to create a new line. It can be used for representing a poem which requires a line break after specific sentences. 
9. Finally developed a really basic html page with all that I learnt today !

My First Project : Movie Ranking web page


Good job :)

Popular posts from this blog

The third parameter - Event bubbling and Event capturing

Binary Sreach Algorithm : Optimized way to get the index of the mid element

Abstract classes