Friday, July 6, 2012

Create a blank link Menu item in Wordpress

Some time we want to create a blank link for the main menu item and want to create sub- menus with some links.  So here we will learn to create the blank link menu.

Just go through the following steps:

1) Click on Appearance- Menus.
2) Select your menu in which you want to create blank link menu item.
3) Now go through Custom Links lying on the left hand side of the screen.
4) Put a # in url field and name the label field which you want to give the menu item.


5) Click on add to menu.
6) This item will be added in the menu items.  You can drag and drop it according to your setting. 
7) Your item will be added in the menu with a blank link.
 

Saturday, February 11, 2012

How to create headings while designing the web page in HTML Ch-4

To create the different size headings follow these steps in your notepad file-

You can give upto 6 no. to create headings in different size.  After giving these commands save your file with .html extension and open it in a browser.  This will give the following results-
Now, you can create headings in different sizes.

Thursday, February 9, 2012

Create a background with an Image in HTML, Ch-3

To show a picture on the background, first of all copy the picture on that folder where your notepad file is located.  After that follow these steps-
 


Save this file and open it in a browser.

  

In how many repeats, the picture will cover the background it depends on the size of the picture.  You can arrange it by sizing the picture.

Create Colored Background and Text in HTML- Ch-2

After giving the title to our web page, we will design the body of out web page.

Now, we will learn to give the color to our background and to the text.

First of all you have to give the title to your page which I have mentioned in Chapter-1 which is -

<HTML>

<HEAD>

<TITLE> MY FIRST WEB PAGE</TITLE>

We already have created a file in Notebook, so open that file in notepad and follow this process-

























Now, save this file and open it in a browser.  Your page will look like this.


One can create different colors by adding red,green and blue color in different ratio.

Have a look on this :)


 
The result of this will look like this.

 
Try different combinations for different colors.

For writing colored text follow this-

Your page will look like this-

Now, practice this.

Monday, February 6, 2012

Learn to create a web page by HTML - ch-1

From today we will start to learn a web page.
Before starting to learn there are some points, one should remember while creating a web page-
  • Notepad or Notepad++ is our editor (we will give the commands in notepad/notpad++).
  • File of notepad/notepad++ will be always saved with .html extension.
  • We will see our web page in a Browser( Internet explorer, Chrome, Mozila Firefox, etc.).
  • There are two types of tags- 
                                 1) Empty Tags- Tags which need not be closed. (<>)
                                 2) Container Tags- Tags which must be closed. (<>, </>)
  •  HTML page has two sections-
                    1) Head - Which contains Title Tag.
                    2) Body - Which contains all Tags other than Title Tag.
  • There are different attributes of different tags which one should remember for creating the web page.
Let's start to create a web page!

Today, we will learn to give the title to our web page.

Create a new page in notepad/notepad++ and write the following-


Save this file with html extension.


Now, open this saved file in a browser.


Here, your web page title has been created.