Tuesday, November 29, 2011

HTML Tutorial - 10

How to create form with checkboxes and a submit button in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.
 


<html>
<body>

<form name="input" action="html_form_action.asp" method="get">
<input type="checkbox" name="Mobile" value="Nokia" /> I have a Nokia<br />
<input type="checkbox" name="Mobile" value="Samsung" /> I have a Samsung
<br /><br />
<input type="submit" value="Submit" />
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>


Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture in your browser to submit the form.


Click on the submit button to submit the data to a page called "html_form_action.asp"
 

HTML Tutorial - 9

How to create Form with text fields and a submit button in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.
 


<html>
<body>

<form name="input" action="html_form_action.asp" method="get">
First name: <input type="text" name="FirstName" value="New" /><br />
Last name: <input type="text" name="LastName" value="Bengaluru" /><br />
<input type="submit" value="Submit" />
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>

Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture in your browser to enter
your First name, Last name and a submit button to submit the information.
Click on the submit button to submit the data to a page called "html_form_action.asp"

HTML Tutorial - 8

How to Draw a border around form-data in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.
 


<html>
<body>

<form action="">
<fieldset>
<legend>Personal information:</legend>
Name: <input type="text" size="30" /><br />
E-mail: <input type="text" size="30" /><br />
Date of birth: <input type="text" size="10" />
</fieldset>
</form>

</body>
</html>


Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture in your browser to enter
your Name, E-mail, Date of birth.

Click on blank field to enter your Name, E-mail, Date of birth.
 

HTML Tutorial - 7

How to create a button in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.
 


<html>
<body>

<form action="">
<input type="button" value="Hello New Bengaluru !">
</form>

</body>
</html>


Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture in your browser.

Note: If you click on this button it will not perform any action !
  

HTML Tutorial - 6

How to create a text area in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.



<html>
<body>
<p>
Share your ideas by posting a comment here.
</p>
<textarea rows="10" cols="30"> Click here to edit.</textarea>
</body>
</html>


Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture on your browser
& click on the text area to edit whatever you want to edit.
Click on the text area to edit whatever you want !

HTML Tutorial - 5

How to create simple drop-down list in Html Script ?

Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.


<html>
<body>

<form action="">
<select name="Mobiles">
<option value="nokia">Nokia</option>
<option value="samsung">Samsung</option>
<option value="reliance">Reliance</option>
<option value="mts">MTS</option>
</select>
</form>

</body>
</html>

Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see like the below picture when you click on the drop down list.

You can select any one of the option !

HTML Tutorial - 4

How to create Radio buttons in Html script ?


Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.


<html>
<body>

<form action="">
<input type="radio" name="Gender" value="male" /> Male<br />
<input type="radio" name="Gender" value="female" /> Female
</form>

<p><b>Note:</b> When a user clicks on a radio-button, it becomes checked, and all other radio-buttons with equal name become unchecked.</p>

</body>
</html>

 
Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see in the browser to select any one option as in below picture.

When you select any one option your browser will show like this !

HTML Tutorial - 3

How to create Check boxes in Html script ?


Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.

 

<html>
<body>

<form action="">
<input type="checkbox" name="mobile" value="Nokia" /> I have a Nokia<br />
<input type="checkbox" name="mobile" value="Samsung" /> I have a Samsung
</form>

</body>
</html>
 

Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see as like the below picture.

When you select any one option you will see like this in your browser !

HTML Tutorial - 2

How to create Password fields in HTML script ?


Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.

<html>
<body>

<form action="">
Username: <input type="text" name="user" /><br />
Password: <input type="password" name="password" />
</form>

<p><b>Note:</b> The characters in a password field are masked (shown as asterisks or circles).</p>

</body>
</html>

Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see as like the below picture when you type the username and password.

You will see the script in your browser like this !

HTML Tutorial - 1

How to create text fields in HTML script ?


Solution :
Step 1: Go to Notepad.
Step 2: Copy the HTML script below to the notepad.
 
<html>
<body>

<form action="">
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
</form>

<p><b>Note:</b> Also note that the default width of a text field is 20 characters.</p>
</body>
</html>
 
Step 3: Now save the file with .html format.
Step 4: Close the notepad and now open the saved file in your default browser .

That's it ! 
You will see as like the below picture.
You will see like the script in your browser like this !

Monday, November 28, 2011

Wonders of India - Red Fort, Delhi

Red Fort - Delhi
                      Red Fort, Delhi was laid on the banks of the Yamuna River in the 17th century. The Red Fort also known as Lal Qil'ah or Lal Qila was the made by Mughal Emperor Shah Jahan. This is known as the shajha’s new capital, Shahjahanabad, the seventh Muslim city in the Delhi. The Great emperor of Mughal Shajahan had built it with the desire of spreading the Mughal power of success between 1638 and 1648. This is not right to say Monument for it, it is more like a small city of mughals. The fort is contentment example of one’s brilliant minds imagination.

                         The fort has two main entrances – one is a Delhi Gate and another is a Lahore Gate. The entrance of Delhi Gate leads to Delhi's most famous and crowded place, Chandni Chowk. The shajha had created this small city when he moved his capital from Agra to Delhi. The Red Fort gets its name from the hefty wall of huge red sandstone that tells us its four sides. The red fort stands at the eastern edge of Shahjahanabad.

                       The fort lies along the Yamuna River, which fed the fosse that surround most of the wall. The design and esthetics of the Red Fort represent the elevation of Mughal imaginativeness, originality and zeal of power which prevailed during kingdomship of Shah Jahan. Inside the fort there are many small museums which include artifacts related to the independence as well the Mughal period. The Red Fort was originally known as "Qila-i-Mubarak" which means “the blessed fort”, because it was the residence of the royal family. The Fort has the Diwan-i-Am or the Hall for Public Audiences, where the Emperor would sit to hear the complaints and problem of the common people. There is another place as Diwan-i-Khas which is the hall of Private Audiences, where the Emperor held private meetings. The Rang Mahal or the 'Palace of Colours' was the house of the Emperor's wives and mistresses and holds a spectacular Lotus shaped fountain, made out of a single piece of marble. The palace was embellish with excellent paintings, gold bordered projections, variegation of mirrors and the ceiling was made with gold and silver which reflected in a central pool and gives an elegant look.

                         It took almost took nine years to build this indomitable bastion and it got accomplished on 16th April 1648. It is said that it got an expenditure of about one crore rupees, an enormous sum in those days, its construction. Half of this total squander was spent to build only the exotic palaces within the fort. In short if we describe the Red Fort then it is an perfect paradigm of intelligence of our kings and the Indian rich heritage.

Sunday, November 27, 2011

Wonders of India - Jaisalmer Fort, Rajasthan

The Jaisalmer Fort, Rajasthan
                        Jaisalmer Fort one of the well known place to experience the aesthetic ancient India. An name with which it is also known is "The Golden Fort". It was build by a rajput raja Rawal jaisal in Jaisalmer city of slightly Rajasthan in 1156 AD. Jaisalmer Fort one of the largest of desert forts of the world and stands proudly like a king in the great Thar Desert, on Trikuta Hill from centuries with same pride. It’s Gargantuan yellow sandstone walls looks like an amber lion color during the day time, eye catching gold colour at the time of sun sets and ads on to the beauty.

                      The architecture of the fort was planned ingenious so as to protect it from every kind of trouble. The walls of the fort contains 3 layers in it i.e the outer layer wall, middle layer wall and the inner most layer. The outer layer is constructed with solid stone blocks and it reinforces the loose rubble of The Golden Fort. The middle wall snakes around the fort. From the inner most wall, the Rajput used to hurl boiling oil and water, and round blocks of rock as missiles on the enemies when they able to cross the second wall so as to safeguard every one.


                        
                     Though India is full of historical monuments and you can find its evidence all over the India but this 800 years old Fort will not let your eye move from it. Golden fort is the second oldest in Rajasthan and is famous for its own glorious heritage. Walking through the narrow lanes is an experience worth wallowing. The fort has four huge entrances, Ganesh Pol, Suraj Pol, Bhoot Pol and Hawa Pol, to enter into havelis. It has decorations on walls and ceilings and carvings on outdoors and interiors inspired from 12th to 15th century. This gorgeous fort gives a feel like someone had take it out straight from the fairy tales and put it into the golden sand of Rajasthan. The screen windows, delicate pavilions and beautiful balconies of the mansions are worth your visit to jaisalmer fort. This is an superb examples of great ancient architecture of India.

Wonders of India - Khajuraho in Madhya Pradesh

The Wonder of India - Khajuraho - Madhya Pradesh

                          One of the most popular destinations among who want to experience the rich cultural heritage of India, Khajuraho has the largest group of medieval Hindu and Jain temples, famous for their erotic sculpture. Khajuraho is a village situated in Madhya Pradesh, near Chhatarpur. Khajuraho, was known with the name of "Kharjuravahaka", which was derived from the Sanskrit word kharjur meaning date palm.

                      This beautiful temple is made up of sandstone, the actual hard stones were not used in its designing. The sandstones are held with the help mortise and tenon method with gravitational force. This form of construction should be done in a very precise manner so as to make it more stable. The megaliths stone which is weigh about 20 tons were use to build the pillar and architraves of the temple. This temple attracts the viewer with its unique state of architecture and the work done on its walls, pillars and roof. The construction of these Temples is made up in north Indian 'nagara' style. Thousand years old, these temples crosses over two centuries, in terms of architecture and sculpture.

                  Khajuraho is filled with of passion, eroticism, dance and music and other finesses of creative arts depicted in its sculpture and images of the temples. Khajuraho temples attribute to the unique glory and special character. A thousand years ago, 85 temples which were splendorous in its looks and are splendidly carved, under the generous and artistic Rajput kings of Central India, had came up at one place, near the Khajuraho village.

                       The 9th to 12th century temples of Khajuraho are the evidences of the architectural brilliance during the times of Chandela dynasty. These temples represent religiosity, patronage, artistic genius and aesthetic sensibility all at once. Khajuraho temples are much different from any other temple city of India. It is not about religious conviction, worshipping and divinity. The temples of Khajuraho are instead famous for the eroticism etched on its walls in the form of sculptures. Khajuraho group of temples situated in the Centre of India is one of the most famous manifestations of Indian architecture. Over 20 of the original 85 temples had witness thousand of years despite being lost into obscurity they are still holding their identity from centuries.

Saturday, November 26, 2011

Wonders of India - Sun Temple, Konark, Orrissa

The Glorious Sun Temple

                        The glorious Sun Temple is also known with names of Konark, Arkakshetra, and Konaditya. This beautiful monument was built by the King Narasimhadeva in the thirteenth century is one of the grandest temples of India and was referred to as the Black Pagoda .The magnificent Sun Temple at Konark in Orissa is the zenith of Orissan temple architecture, and one of the most astonishing monuments representing religious architecture in the world. The temple was designed in the shape of a colossal chariot with seven horses and twenty four wheels, carrying the sun god, Surya, across the heavens. The black pagoda at Konarak is widely known not only for its architectural grandeur but also for the convolution and abundance of sculptural work. The entire temple has been conceived as a chariot drawn by seven horses marking the 7 days of the week. The huge 24 wheels, each about 10 feet in diameter, wonderfully carved and adorned, mark the hours of the day. It is a masterpiece of Orissa's medieval architecture.
                            
                All around the temple, there are various floral and geometric patterns. Around the base of the temple, and up the walls and roof, are carvings in the erotic style. There are images of animals, foliage, men, warriors on horses and other interesting patterns. There are three images of the Sun God, positioned to catch the rays of the sun at dawn, noon and sunset. The massive structure of the temple, now in ruins, sits in solitary splendor surrounded by the drifting sands. The ruins of this temple were excavated in late 19th century. Konark is also known as Konaditya. The name Konark is derived form the words Kona - Corner and Arka - Sun; it is situated on the north eastern corner of Puri or the Chakrakshetra. Konark is also known as Arkakshetra.

                        
                       This temple was visualize by the Ganga ruler Narasimha Deva but not able complete fully. It is said by the old people that the main idol of the Sun God on which the suns rays fall in the morning is said to have been removed by some Portuguese navigators. The temple now comprises only of the sabhamandap and the natamandir, the main temple was deteriorates down many years ago. It takes the form (Arka) of the chariot of Surya, the sun god, and is heavily decorated with stone carving. The entire complex was designed in the form of a huge chariot drawn by seven spirited horses on twelve pairs of exquisitely decorated wheels. The entrance is guarded by two lions, which are each shown crushing a war elephant. Each elephant in turn lies on top of a human body. The temple symbolizes the majestic stride of the Sun god.

Wonders of India - Golden Temple in Amritsar

Beautiful and famous place of Sikhs cultureThe Wonder of India - Golden Temple - Amritsar

                 Golden Temple, one of the spiritually beautiful and famous place of Sikhs culture. It is situated in Amritsar, the capital of a beautiful state of rivers Punjab. An unforgettable architecture and a lake around give an elegant look. It is covered wid a layer of gold on d top both inside & outside of d gurudawara. In simple words if I say it is a perfect place 4 ur internal peace and harmony. It is a symbol of the magnificence & strength of d Sikh people all over d world. People from all over d world wishes 2 be the part of Ardas at Sri Harmandir Sahib.

                  Golden Temple is also known wid d name of Harmandir Sahib and Sri Darbar Sahib. The Harmandir Sahib is one of d famous gurudawara of sikhisim. The eternal Guru the Sri Guru Granth Sahib Ji, is kept inside and it is consider as a god of Sikh religion. The Sri Guru Granth Sahib is the holiest literature in the Sikh religion, on 7 October 1708 the tenth Guru of Sikhs, Sri Guru Gobind Singh had made guru granth sahib the eternal Sikh Guru & d leader of Sikhism.


                   The main structure of Sri Harmandir Sahib, functionally as well as technically is a three-storied one. It is built on a 67ft. square platform in the centre of the Sarovar. The temple is made up in 40.5ft. square and it is surrounded with the path. The lake around and the lighting gives an unforgettable view when the sun sets. It has doors in each direction i.e. East, West, North and South. The bridge is connected with the 13 feet wide ‘Pardakshna’ (circumambulatory path).
                  
                  
                       On the top of the first floor ,4 feet high parapet rises on all the sides which has also four ‘Mamtees’ on the four corners and exactly on the top of the central hall of the main sanctuary rises the third story. It is a small square room and has three gates around. A continuous reading of Guru Granth Sahib is held there. On the top of this room stands the low fluted ‘Gumbaz’(dome) having lotus petal motif in relief at the base inverted lotus at the top which supports the ‘Kalash’ having a beautiful ‘Chhatri’ at the end. Its unique architecture represents synchronization between the Muslims and the Hindus by the way it is constructed and this is considered the best architectural specimens of the world. It is often quoted that this architecture has created an exclusive architecture of oneness in the history of art in India. It is a place of both stupendous beauty & sub line peacefulness.

Friday, November 25, 2011

How to rename the Recycle bin ?

RENAME RECYCLE BIN :


Step 1: Go to run. ( Press Windows button + R )
Step 2: Type Regedit
Step 3: Go to HKEY_CLASSES_ROOT
Step 4: Click on
CLSID
Step 5: Click on {645FF040-5081-101B-9F08-00AA002F954E} 
Step 6: Now change the name "Recycle Bin" to whatever you want (don't type any quotes).
--------------------------------*****ENJOY*****----------------------------- 

Sunday, November 20, 2011

Wonders of the World - Christ the Redeemer (statue)

 
Christ the Redeemer
Nearest city
Rio de Janeiro, Brazil
Coordinates
22°576S 43°1239WCoordinates: 22°576S 43°1239W
Established
Dedicated October 12, 1931
Consecrated October 12, 2006
New Seven Wonders of the World July 7, 2007
                       Christ the Redeemer (Portuguese: Cristo Redentor) is a statue of Jesus Christ in Rio de Janeiro, Brazil; considered the largest Art Deco statue in the world and the world's 5th largest statue. It is 39.6 metres (130 ft) tall, including its 9.5 metres (31 ft) pedestal, and 30 metres (98 ft) wide. It weighs 635 tonnes (625 long,700 short tons), and is located at the peak of the 700-metre (2,300 ft) Corcovado mountain in the Tijuca Forest National Park overlooking the city. A symbol of Christianity, the statue has become an icon of Rio and Brazil. It is made of reinforced concrete and soapstone, and was constructed between 1922 and 1931.

 History :
 
                          The idea for erecting a large statue atop Corcovado was first suggested in the mid-1850s, when Catholic priest Pedro Maria Boss requested financing from Princess Isabel to build a large religious monument. Princess Isabel did not think much of the idea and it was dismissed in 1889, when Brazil became a republic with laws mandating the separation of church and state. The second proposal for a landmark statue on the mountain was made in 1921 by the Catholic Circle of Rio. The group organised an event called Semana do Monumento ("Monument Week") to attract donations and collect signatures to support the building of the statue. The donations came mostly from Brazilian Catholics. The designs considered for the "Statue of the Christ" included a representation of the Christian cross, a statue of Jesus with a globe in his hands, and a pedestal symbolizing the world. The statue of Christ the Redeemer with open arms, a symbol of peace, was chosen.
                       
                            Local engineer Heitor da Silva Costa designed the statue; it was sculpted by French sculptor Paul Landowski. A group of engineers and technicians studied Landowski's submissions and the decision was made to build the structure out of reinforced concrete (designed by Albert Caquot) instead of steel, more suitable for the cross-shaped statue. The outer layers are soapstone, chosen for its enduring qualities and ease of use. Construction took nine years, from 1922 to 1931 and cost the equivalent of US$250,000 ($3,068,097 in 2011). The monument was opened on October 12, 1931. The statue was meant to be lit by a battery of floodlights triggered remotely by shortwave radio pioneer Guglielmo Marconi, stationed 5,700 miles (9,200 km) away in Rome,but poor weather affected the signal and it had to be lit by workers in Rio.
                           In October 2006, on the statue's 75th anniversary, Archbishop of Rio Cardinal Eusebio Oscar Scheid consecrated a chapel (named after the patron saint of Brazil—Nossa Senhora Aparecida, or "Our Lady of the Apparition,") under the statue. This allows Catholics to hold baptisms and weddings there.
The statue was struck by lightning during a violent electrical storm on Sunday, February 10, 2008 and suffered some damage on the fingers, head and eyebrows. A restoration effort was put in place by the Rio de Janeiro state government and archdiocese to replace some of the outer soapstone layers and repair the lightning rods installed on the statue. On April 15, 2010 graffiti was sprayed on the statue's head and right arm. Mayor Eduardo Paes called the act "a crime against the nation" and vowed to jail the vandals, even offering a reward of R$ 10,000 for any information that might lead to an arrest. The Military Police eventually identified house painter Paulo Souza dos Santos as the suspect of the act of vandalism.
Disclaimer: "I do not own the rights of the content provided in this blog. All content provided on this blog is for informational purposes only. The owner of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site. The owner will not be liable for any errors or omissions in this information nor for the availability of this information. The owner will not be liable for any losses, injuries, or damages from the display or use of this information".