hi, welcome to Webune Support Forums.

Webune is a Web Hosting Provider. We have services which provide you with tools to manage and bring all your web content within reach to all your customers.

one way is to create html documents. or web pages. web pages are documents which you can use to inform your clients and your audience. for example, blogs are a great tool for web content.

today we are going to show you how you can write a basic html page.

the first thing you need is a text editor. if you are using windows, windows comes with notepad. the basic requirements for an html web page are the following tags:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>


now using this template, we are going to create a simple html page..

open a blank notepad document. copy and paste the following html code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Webune Tutorial</title>
</head>

<body>
<h1>This is an HTML Page</h1><hr />
<p>Hello, </p>
<p>If you can read this, then it means you have created your first HTML page.</p>
<p><strong>Here i will create some letters in bold using the &lt;strong&gt; tag</strong></p>
<p><u>Here i will underline this text using the &lt;u&gt; tag</u></p>
<p>You can be more creative as you learn more. Remember. if you ever need Web Hosting for your Pages, Please visit us at <a href="http://www.webune.com">www.webune.com</a></p>
</body>
</html>


now save this notepad file as: webune.html

after you have saved it as, open webune.html with your browser and you will see the html page. Congratulations!!