Create An Design Web Page In Simple HTML
Guys, we are going to create webpage in HTML and design in simple HTML. After reading this blogs you are able to create or developed static websites or web applications. If you want to master of developing web sites, so read this blogs carefully, Each and every line of codes are important to you. This blogs help you for developing web application. No coaching are needed, only one point I suggest you, every words , every code, and every line must be read. and understand it why I use for that code, and what is changes in our page for using the tags.
So Guys , If you feel that this tutorials help you in anyways, you can support us to create or writing more contents by donating here , I have put the link in description below....
So Guys , If you feel that this tutorials help you in anyways, you can support us to create or writing more contents by donating here , I have put the link in description below....
For PayTm : +918518013539
For PayPal Account : https://www.paypal.me/bschandel
For PayPal Email : balwantchandel007@gmail.com
<html> <!-- Opening Tags -->
<head>
<title>Welcome to my Static Websites</title><!-- Define Title -->
</head>
<body> <!-- Body Openning -->
<h1 align='center'>Welcome to my First Web Page</h1><!-- Define heading -->
</body><!-- Body Closing -->
</html><!-- Closing Tags -->
For input the table inside in our page. So, how we can achieve this.
<html> <!-- Opening Tags -->
<head>
<title>Welcome to my Static Websites</title><!-- Define Title -->
</head>
<body> <!-- Body Openning -->
<h1 align='center'>Welcome to my First Web Page</h1><!-- Define heading -->
<table> <!-- Opening Tags -->
<tr><!-- Opening Rows -->
<td><!-- Opening Columns-->
<p align='center'> Welcome this is my first table,rows and columns example</p>
</td><!-- Closing Columns-->
</tr><!-- Closing Rows -->
</table><!-- Closing Tags -->
</body><!-- Body Closing -->
</html><!-- Closing Tags -->
HTML : Every Tags always open <> and close with </ >.
For Example :
<p>Example</p>
index.html (Base Code)
<html> <!-- Opening Tags -->
<head>
<title>Welcome to my Static Websites</title><!-- Define Title -->
</head>
<body> <!-- Body Openning -->
<h1 align='center'>Welcome to my First Web Page</h1><!-- Define heading -->
</body><!-- Body Closing -->
</html><!-- Closing Tags -->
For input the table inside in our page. So, how we can achieve this.
Create Table in HTML using Tag:
<table> <!-- Opening Tags -->
<tr><!-- Opening Rows -->
<td><!-- Opening Columns-->
<p align='center'> Welcome this is my first table,rows and columns example</p>
</td><!-- Closing Columns-->
</tr><!-- Closing Rows -->
</table><!-- Closing Tags -->
just copy this code anywhere you want a table. like this:
<html> <!-- Opening Tags -->
<head>
<title>Welcome to my Static Websites</title><!-- Define Title -->
</head>
<body> <!-- Body Openning -->
<h1 align='center'>Welcome to my First Web Page</h1><!-- Define heading -->
<table> <!-- Opening Tags -->
<tr><!-- Opening Rows -->
<td><!-- Opening Columns-->
<p align='center'> Welcome this is my first table,rows and columns example</p>
</td><!-- Closing Columns-->
</tr><!-- Closing Rows -->
</table><!-- Closing Tags -->
</body><!-- Body Closing -->
</html><!-- Closing Tags -->
HTML : Every Tags always open <> and close with </ >.
For Example :
<p>Example</p>
Just copy and past this code on your notepad or any editor and save this file index.html and enjoy your first static web application programs.
Guys , If you feel that this tutorials help you in anyways, you can support us to create more contents by donating here , I have put the link in description below....
For PayTm : +918518013539
For PayPal Account : https://www.paypal.me/bschandel
For PayPal Email : balwantchandel007@gmail.com
Comments
Post a Comment