Author name: Architha Kondu

Fireworks Effect Using CSS and JS

This tutorial tells about the fireworks effect using the CSS and JS. Working on Fireworks effect using CSS and JS <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Fireworks Effects</title> <link rel=”stylesheet” href=”style.css”> </head> <body> <div id=”fireworks-container”></div> <script src=”script.js”></script> </body> </html> style.css body { margin: 0; overflow: hidden; background: white; } #fireworks-container …

Fireworks Effect Using CSS and JS Read More »

Show values from an XML file using javascript

XML file using the JavaScript We use XMLHttpRequest for the xml XML File (inf.xml) : <?xml version=”1.0″ encoding=”UTF-8″?> <users> <user> <name>Pendyala Swetha</name> <email>[email protected]</email> </user> <user> <name>Penyala Navyasree</name> <email>[email protected]</email> </user> </users>   HTML FILE : <!DOCTYPE html> <html> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>XML Data</title> <style> body { font-family: Arial, sans-serif; background-color: #f9f9f9; padding: …

Show values from an XML file using javascript Read More »

Scroll to Top