हेल्लो दोस्तों! आपको html के बारे में दिया गया है जिसमे html के 50(HTML Program) प्रोग्राम दिया गया है जिसमे उन सभी के आउटपुट भी दिया गया है जिसमे आप लिंक इमेज table और भी बहुत कुछ दिया गया है तो चलिए शुरू करते है।
HTML Program 1 to 50 Examples
1.HTML Simple Example(HTML Program)
<!DOCTYPE html> <html> <head> <title>simple example</title> </head> <body> a simple html example </body> </html>
OUTPUT
2.HTML Paragraph Tag <p>
<!DOCTYPE html> <html> <head> <title>paragraph example</title> </head> <body> <p>paragraph html example</p> </body> </html>
OUTPUT
3.HTML Heading Tag
<!DOCTYPE html> <html> <head> <title>heading example</title> </head> <body> <h1>heading level1</h1> <h2>heading level2</h2> <h3>heading level3</h3> <h4>heading level4</h4> <h5>heading level5</h5> <h6>heading level6</h6> </body> </html>
OUTPUT
4.HTML Horizontal
4.a HTML horizontal Line
<!DOCTYPE html> <html> <head> <title>horizontal line example</title> </head> <body> one line <hr>two line <hr>three line <hr> </body> </html>
OUTPUT
4.b HTML horizontal line Color
<!DOCTYPE html> <html> <head> <title>horizontal line color example</title> </head> <body> one line <hr color="blue">two line <hr color="red">three line <hr color="yellow"> </body> </html>
OUTPUT
4.c HTML horizontal line size
<!DOCTYPE html> <html> <head> <title>horizontal line size example</title> </head> <body> one line <hr size="10px" color="blue">two line <hr size="20px" color="red">three line <hr color="yellow"> </body> </html>
OUTPUT
4.d HTML horizontal width
<!DOCTYPE html> <html> <head> <title>horizontal width example</title> </head> <body> one line <hr width="60%" size="10px" color="blue">two line <hr width="80%" size="20px" color="red">three line <hr color="yellow"> </body> </html>
OUTPUT
5.HTML Text Formatting
<!DOCTYPE html> <html> <head> <title>text formating example</title> </head> <body> <b>bold text</b> <i>italic text</i> <u>underline text</u> </body> </html>
OUTPUT
6.HTML Span tag
<!DOCTYPE html> <html> <head> <title>span tag example</title> </head> <body> my name <span>is ashwani kumar</span>verma </body> </html>
OUTPUT
7.HTML Div tag
<!DOCTYPE html> <html> <head> <title>div tag example</title> </head> <body> <!-- div tag सभी group elements में प्रयोग होता hai--> <div> First div <input type="text"> <input type="text"> <input type="text"> </div> <div> Second div <input type="text"> <button>submit detail</button> </div> </body> </html>
OUTPUT
8.HTML Emphasized Text
<!DOCTYPE html> <html> <head> <title>Emphasized tag example</title> </head> <body> a simple text<br> <em>Emphasized text</em> </body> </html>
OUTPUT
9.HTML small tag
<!DOCTYPE html> <html> <head> <title>small tag example</title> </head> <body> a simple text<br> <small>small text </small>here </body> </html>
OUTPUT
10. HTML mark tag
<!DOCTYPE html> <html> <head> <title>mark tag example</title> </head> <body> a simple text<br> <mark>mark any </mark>other text </body> </html>
OUTPUT
11.HTML delete Tag
<!DOCTYPE html> <html> <head> <title>delete tag example</title> </head> <body> a simple text<br> My tag<del>delete tag use</del> </body> </html>
OUTPUT
12.HTML insert tag
<!DOCTYPE html> <html> <head> <title>Insert tag example</title> </head> <body> a simple text<br> This tag is<ins>insert tag</ins> </body> </html>
OUTPUT
13. HTML subscripted tag
<!DOCTYPE html> <html> <head> <title>subscripted tag example</title> </head> <body> This is a <sub>subscripted tag</sub> </body> </html>
OUTPUT
14.HTML superscripted tag
<!DOCTYPE html> <html> <head> <title>superscripted tag example</title> </head> <body> This is a<sup>superscripted tag</sup>here </body> </html>
OUTPUT
15. HTML strong tag
<!DOCTYPE html> <html> <head> <title>strong tag example</title> </head> <body> This is a<strong>strong tag text</strong> </body> </html>
OUTPUT
16. HTML br tag
<!DOCTYPE html> <html> <head> <title>br tag example</title> </head> <body> <!--without br tag--> One Two Three Four <!--using br tag--> <br>One <br>Two <br>Three <br>Four </body> </html>
OUTPUT
17. HTML s tag
<!DOCTYPE html> <html> <head> <title>s tag example</title> </head> <body> Similar tag<s>s tag </s> text </body> </html>
OUTPUT
18. HTML q tag
<!DOCTYPE html> <html> <head> <title>quotation tag example</title> </head> <body> He said<q>Javed is a good friend</q> </body> </html>
OUTPUT
19. HTML Address tag
<!DOCTYPE html> <html> <head> <title>address tag example</title> </head> <body> Address detail <address> Ashwani Verma<br> Country-India<br> state-up<br> Number-9839xxxxxx<br> </address> </body> </html>
OUTPUT
20. HTML cite Tag
<!DOCTYPE html> <html> <head> <title>cite tag example</title> </head> <body> This website create by<cite>Ashwani Verma</cite>computer science engineer </body> </html>
OUTPUT
21. HTML bdo tag
<!DOCTYPE html> <html> <head> <title>bdo tag example</title> </head> <body> simple text <bdo dir="rtl">Right-to-left</bdo> </body> </html>
OUTPUT
22. HTML kbd tag
<!DOCTYPE html> <html> <head> <title>kbd tag example</title> </head> <body> kbd define keyboard input <kbd>this is text style</kbd> </body> </html>
OUTPUT
23. HTML samp tag
<!DOCTYPE html> <html> <head> <title>samp tag example</title> </head> <body> samp tag define computer output<br> <samp>jsjhdjsebdnm7373!jsjsk</samp> </body> </html>
OUTPUT
24.HTML code tag
<!DOCTYPE html> <html> <head> <title>code tag example</title> </head> <body> programming code is written inside code<br> <code> var x=6; var y=4; var c=0 add=x+y; c=x+y; </code> </body> </html>
OUTPUT
25. HTML var tag
<!DOCTYPE html> <html> <head> <title>var tag example</title> </head> <body> <var>(a+b)<sup>2</sup></var>=<var>a</var> <sup>2</sup>+<var>b<sup>2</sup></var> +<var>2ab</var> </body> </html>
OUTPUT
26. HTML blockquote tag
<!DOCTYPE html> <html> <head> <title>blockquote tag example</title> </head> <body> Following said paragraph<br> <blockquote> This website is create owner name Ashwani Kumar Verma . He is a diploma final year student at 2020 now at preparation for b.tech admission top government college </blockquote> </body> </html>
OUTPUT
27. HTML pre tag
<!DOCTYPE html> <html> <head> <title>pre tag example</title> </head> <body> <!--without pre tag use--> C 3 S C H O O L <pre> C 3 S C H O O L </pre> </body> </html>
OUTPUT
28. HTML center Tag
<!DOCTYPE html> <html> <head> <title>center tag example</title> </head> <body> <center>c3school website name</center> </body> </html>
OUTPUT
29. HTML textbox
<!DOCTYPE html> <html> <head> <title>textbox example</title> </head> <body> <input type="text" value="0123" size="3" maxlenght="3"> </body> </html>
OUTPUT
30.HTML password
<!DOCTYPE html> <html> <head> <title>password example</title> </head> <body> Username<br> <input type="text"> <br> Password <input type="password"> </body> </html>
OUTPUT
31. HTML Textarea
<!DOCTYPE html> <html> <head> <title>textarea example</title> </head> <body> <textarea cols="6" rows="6"></textarea> </body> </html>
OUTPUT
<!DOCTYPE html> <html> <head> <title>input button tag example</title> </head> <body> <input type="button" value="click here"> </body> </html>
OUTPUT
<!DOCTYPE html> <html> <head> <title>button autofocus example</title> </head> <body> <button>button1</button> <button autofocus="true">button2</button> </body> </html>