
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Lakshmi Srinivas has Published 287 Articles

Lakshmi Srinivas
200 Views
Use the Number() method in JavaScript to convert to Number. You can try to run the following code to learn how to convert [ ] to Number in JavaScript.ExampleLive Demo Convert [] to Number var myVal = []; document.write("Number: " + Number(myVal));

Lakshmi Srinivas
299 Views
Use the document.title property to set the title of the document in JavaScript.ExampleYou can try to run the following code to implement document.title property in JavaScript.Live Demo Demo Title var x = document.title; document.write("Our Title: "+x);

Lakshmi Srinivas
96 Views
To implement Fade Out Up Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo .animated { background-image: url(/css/images/logo.png); ... Read More

Lakshmi Srinivas
174 Views
The CSS background-image property is used to specify the background image. You can try to run the following code to implement the background-image property in CSS −Example #demo { border: 5px dashed red; ... Read More

Lakshmi Srinivas
345 Views
Bounce Animation effect is used to move the element quick up, back, or away from a surface after hitting it.ExampleYou can try to run the following code to implement bounce animation effect −Live Demo .animated { ... Read More

Lakshmi Srinivas
61 Views
Use border-bottom-right-radius property for setting the border of the bottom right corner. You can try to run the following code to implement border-bottom-right-radius property −ExampleLive Demo #rcorner { border-radius: 25px; border-bottom-right-radius: 45px; background: orange; padding: 20px; width: 200px; height: 150px; } Rounded corners!

Lakshmi Srinivas
454 Views
CSS3 Rounded corners are used to add special colored corner to body or text by using the border-radius property.ExampleLive Demo #rcorner { border-radius: 25px; background: #8AC007; padding: 20px; width: 200px; height: 150px; } Rounded corners!

Lakshmi Srinivas
156 Views
The azimuth property sets where the sound should come from horizontally. The possible values are listed below:angle − Position is described in terms of an angle within the range -360deg to 360deg. The value 0deg means directly ahead in the center of the soundstage. 90deg is to the right, 180deg ... Read More

Lakshmi Srinivas
117 Views
Paged media differ from continuous media in that the content of the document is split into one or more discrete pages. Paged media includes paper, transparencies, pages that are displayed on computer screens, etc.The CSS2 defines a "page box", a box of finite dimensions in which content is rendered. The ... Read More