How to view the HTML code of a webpage ?
In Chrome : Press Ctrl + U / Right Click > View page source
In Mozilla Firefox : Press Ctrl + U / Press Alt for Menu Bar and After Click Tools > Web Developer > Page Source
In Microsoft Edge : Right Click > View source / Press F12 and go to Debugger
In Microsoft Internet Explorer : Press Ctrl + U / Press Alt for Menu Bar and After Click View > Source
In Safari : Press Command + Option + U / Right Click > Show page source
In Opera : Press Ctrl + U / Right Click > View page source

Creating HTML(.html) File using Notepad / Notepad++
HTML File को create करने के लिए किसी भी Text Editor की जरुरत होती है |
यहाँ पर Notepad++ का इस्तेमाल किया गया है | notepad++ को download करने के लिए यहाँ click करे |

Notepad++ को install करने के बाद उसे Open करे |

Simple Program को उस Editor में Type करे |

उसके बाद ctrl + S या File > Save click करके कुछ नाम देकर .html या .htm इस extesion से save करे |

Set Title for Webpage
Webpage के title को set करने के लिए <title> tag का इस्तेमाल किया जाता है | title tag को <head> tag के अन्दर दिया जाता है |


Add some text to the webpage
webpage पर text को add करने के लिए <p>, <span>, header tags, textnode या आदि कई tags का इस्तेमाल किया जाता है |

