In this section we will give you very simple example of a HTML page. After reading this page you should be able to create simple HTML pages for your website.
HTML is used to create web pages for websites. You can use HTML with JavaScript to create more dynamic WebPages. These days HTML and JavaScript is used to create interactive web pages. There are many JavaScript Libraries such as jQuery, Dojo etc. for creating Ajax based dynamic web pages.
Creating Simple HTML page
Here is simple example of HTML page that displays welcome message on the web browsers.
<html>
<head>
<title>Welcome to my Website</title>
</head>
<body>
<p>Welcome to my website.</p>
</body>
</html>
Web page starts with the <html> tag and ends with </html> tag. The <head> tag is used to display title message which appears on the title bar of web browser. The content of the web page is places in <body>...</body> tag. The <p>...</p> tag is used to add text paragraph in the web page.
The above code displays "Welcome to my website." message on web page.
More Tutorials on roseindia.net for the topic Simple HTML example.If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.