Posts

Chess Board In Html

You Can Create Chess Board In html By Using this code <!DOCTYPE html> <html> <body bgcolor="grey"> <title>Tables</title> <table> <TABLE BORDER=1 WIDTH="600px" height="600px">   <tr>     <td bgcolor="black">n</td>     <td bgcolor="white">n</th>     <td bgcolor="black">n</td>     <td bgcolor="white">n</td>     <td bgcolor="black">n</td>     <td bgcolor="white">n</td>     <td bgcolor="black">s</td>     <td bgcolor="white">s</th>   </tr>   <tr>     <td bgcolor="white">s</td>     <td bgcolor="black">s</th>     <td bgcolor="white">s</td>     <th bgcolor="black">s</td>     <td bgcolor="white"...

How To Create Html Paragraph?

You Can  Create Html Paragraph By Use This Code <html> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>

How To Create Html Heading?

To Create Html Heading Use this code <html> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body> </html>

What Is HTML Tags?

Html Tags Is Used For Every Command In Html File.Without Tags Html Is Incomplete.There Are Two Types Of Tags: Single Tag Double Tag Single Tag Is Like <source> That Don't Need To Close Double Tag Can Start With <html> And End With </html>.

How To create Html File?

You Can Create Html File By Creating Basic Syntax.Without Basic Syntax Html File Is Incomplete.The Syntax Is Written Below : <html> <head> <title>My Html File</title> </head> <body> In Body Tag You Can Do Work Of Your Need  And Then Close These Tags </body> </html>

What Is HTML?

HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements are the building blocks of HTML pages HTML elements are represented by tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so on Browsers do not display the HTML tags, but use them to render the content of the page A Simple HTML Document Example <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>

What Is Website?

Website Website is collection of web pages through which we get  information of our need .For example Wikipedia.org,  Google.com ,Facebook.com and many sites.The Basic Purpose is to design website is to give information to user at anytime and anyplace through one click.The basic language for creating language is HTML(HyperText Markup Language)