How to create a simple page for my website?

In this tutorial you will learn how to create a simple HTML page. What is it? An HTML page is a webpage displayed or rendered when an HTML file is opened in your web browser. If you want to create a website without any knowledge, you should download and install to your server a CMS or Content Management System. This tutorial is divided into three parts:

  1. Create a directory
  2. Edit your page
  3. Create an .html file

How to create a directory?

We will start by creating a folder. To do this, you must open your file manager (the one you used to see a list of your documents). Then, click the right mouse button and choose New and folder. The first page of a website called traditional index.htm (or html depending on the language used). Warning, the name of your document must end with a “.htm” or “.html”, otherwise it will not work.

Text document

Edit a text document

Then, click on the right button of your mouse and create a new text document. You can edit your text document with these applications:

  • For Linux or Windows, you can use notepad ++. If you want to download it, click here: download notepad ++.
  • Textwrangler, a free document editor for mac. If you want to have more features, you can download this paid program: Pagespinner (for pagespinner, you have a trial time of 40 days).

Then click on the right button of your mouse, and select “edit the document” with the program that you downloaded.

Create an html document

An HTML page looks like this:

<html> /*It means that your html code starts here*/
<head> /*The header of your website starts here*/
<title>The title</title>
</head>/*And it ends here*/
<body>
<h1>This is the first heading</h1> /*It is the first subtitle*/
<p>This is a paragraph with a <a href="http://example.com/">link</a>.</p>
</body>

Note: you can delete the text between “/*” and “*/”
 If you want, you can copy and paste this code to your html document. Then, save this file and go to the main folder of your website. Click on it, and your website will be opened on your default web browser. If you want to add style, you can use CSS and if you want to add database, you can add php and mysql codes. Find more informations about how to code a website on w3school. If you want to add a link to Atyq, you can add it in your body :

<a href=”http://www.delhicourses.in/“>Delhi Courses Institute</a>

WYSIWYG — software

There are software programs called WYSIWYG (what you see is what you get), that encode HTML site that you want to create. This should not prevent you from learning some underlying html on to have no unpleasant surprises! With this software, you put the text and images, and the software automatically generates the HTML code. It will also assist you in the integration of animations and scripts.

By Delhi courses providing Digital Marketing Course in Delhi and SEO Course in Delhi.