Learn How Get Started With HTML5
Learn How Get Started With HTML5
2) Specify the address www.google.com search notepad++. 3) You will get the below screen
4)
6) Open the download folder and double click on it then following window will occur.
7) Click on OK
10)
11)
Click on Finish.
12) Run notepad++ i.e Double Click on it.Having lot more option
13)
14)
15)
16)
17) Example of heading tag like <h1>to <h6> <p>paragraph tag and some other tag . Write the Code in notepad++ .
18)
<html> <head> <b>Program1</b></head> <title>THIS IS FIRST PROGRAM </title> <style> </style> </head> <body > <marquee><h1>THESE ARE THE DIFFERENT TYPE OF HEADING </h1> </marquee> <h1>THIS IS THE FIRST HEADING</h1> <h2>THIS IS THE SECOND HEADING</h2> <h3>THIS IS THE THRID HEADING</h3> <h4>THIS IS THE THRID HEADING</h4> <h5>THIS IS THE THRID HEADING</h5> <h6>THIS IS THE THRID HEADING</h6> <p bgcolor="red">This is the paragraph tag.</p> </body> </html>
19)
20) Click on save and open or double click on it i.e open google chrome browser it will display the following output
21)
22)
23) CREATE AN HTML DOCUMENT FOLLOWING ARE THE PROCEDURE.i.e create an new folder
24) Double click on folder right click ,and click on text document.
25)
26) When we open in the brower the file i.e index.html it has .txt extension look like.
27) So we have to remove that txt extension Go to organize click on folder and search option .
28)
Click on view .
29) Click on view and uncheck Hide extensions for known file types and click on Ok button.
30)
31)
32)
33) <html>
</style> </head> <body > <h1>THIS IS THE FIRST HEADING</h1> <h2>THIS IS THE SECOND HEADING</h2> <h3>THIS IS THE THRID HEADING</h3> <h4>THIS IS THE THRID HEADING</h4> <h5>THIS IS THE THRID HEADING</h5> <h6>THIS IS THE THRID HEADING</h6> <a href="E:\vivek\simplecss.html">This is the first link.</a> <a href="E:\vivek\v1.html">This is the first link.</a> <p bgcolor="red">This is the paragraph tag.</p></body>
</html>
34)
35)
Output .
36) <html>
</style>
</head>
<body >
<h1>THIS IS THE FIRST HEADING</h1> <h2>THIS IS THE SECOND HEADING</h2> <h3>THIS IS THE THRID HEADING</h3> <h4>THIS IS THE THRID HEADING</h4> <h5>THIS IS THE THRID HEADING</h5> <h6>THIS IS THE THRID HEADING</h6> <a href="E:\vivek\simplecss.html">This is the first link.</a> <br> <a href="E:\vivek\v1.html">This is the second link.</a><br /> <a href="http://www.google.com">Welcome to google.</a><br /> <p bgcolor="red">This is the paragraph tag.</p> <div> <img src="C:\Users\password\Desktop\Penguins.jpg" alt=Sample Image />
</div> </body>
</html>
37)
Output.