Create a Single Page Application using HTML CSS & JavaScript Last Updated : 28 Jun, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we are going to design and build a cool and user-friendly single-page application (SPA) using just HTML, CSS, and JavaScript. A single-page application contains multiple pages that can be navigated or visited without loading the page every time. This makes things faster and more interesting.Project Preview:Project PreviewStep-by-Step Tutorial for Creating a Single-Page ApplicationStep 1: Firstly, we will create a folder with the project name and create the HTML(e.g, index.html), CSS (e.g, style.css), JavaScript files, Images folder, and a separate file for the responsive CSS if required.Step 2: Now, use the different HTML tags like section, header, meta, title, head, div, I, mg, etc to structure the web page. and includes a header, navigation bar, main content area, and a script tag for our JavaScript file.Step3: Add some Style using CSS to the HTML code to make our frontend look good. We'll choose colors and layouts that look modern and inviting. Add style mainly to the image and beautify the header. and we will be using a gradient color to give a greenish look to the header.Step4: Add the JavaScript to change content dynamically. let's add some JavaScript magic. The changeContent function will be our main things, updating the content based on what the user clicks. Step5: You can create a navigation system that dynamically loads content based on user interactions.Example: The below code example explains how you can use the HTML, CSS and JavaScript to create a Single Page Application. index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content= "width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <title>SPA app</title> </head> <body> <div id="app"> <header> <h1> GeeksforGeeks </h1> <h1> Single Page Application Using HTML, CSS & JavaScript </h1> </header> <nav> <ul> <li> <a href="#" onclick= "changeContent('home')"> Home </a> </li> <li> <a href="#" onclick= "changeContent('about')"> About </a> </li> <li> <a href="#" onclick= "changeContent('contact')"> Contact </a> </li> </ul> </nav> <main> <div id="content"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-12.png"> <h2>Welcome to Geeks for Geeks</h2> <p> Geeks for Geeks is a portal for computer science enthusiasts, providing a wide range of tutorials, articles, and resources. </p> <p> Visit the GeeksforGeeks portal <a href="https://www.geeksforgeeks.org/" target="_blank"> here </a>. </p> </div> </main> </div> <script src="script.js"></script> </body> </html> style.css /* style.css */ body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } #app { display: flex; flex-direction: column; min-height: 100vh; } header { background-color: #2f8d46; color: white; text-align: center; padding: 1em; } nav { background-color: #4caf50; } nav ul { list-style-type: none; margin: 0; padding: 0; display: flex; justify-content: center; } nav li { margin: 0; } nav a { text-decoration: none; color: #fff; padding: 1em; display: block; transition: background-color 0.3s ease; } nav a:hover { background-color: #45a049; } main { flex: 1; padding: 1em; } #content { max-width: 1000px; margin: 0 auto; background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } #content h2 { color: #2f8d46; } #content img { width: 400px; height: auto; margin: 0 auto; display: block; border-radius: 10px; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); border: 3px solid #2F8D46; } form { max-width: 400px; margin: 20px auto; padding: 20px; background-color: #f0f0f0; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } form label { display: block; margin-bottom: 8px; } form input, form textarea { width: 100%; padding: 8px; margin-bottom: 16px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 4px; } form button { background-color: #4caf50; color: #fff; padding: 10px; border: none; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease; } form button:hover { background-color: #45a049; } index.js function changeContent(page) { var contentDiv = document.getElementById('content'); switch (page) { case 'home': contentDiv.innerHTML = ` <img src= "https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-12.png"> <h2> Welcome to the Home Page! </h2> <p> This is the main page of our SPA. </p> <p> Explore the different sections using the navigation menu. </p> `; break; case 'about': contentDiv.innerHTML = ` <h2>About Us</h2> <p> This is the about page content. Learn more about our purpose and team. </p> <p> We're passionate about creating engaging and informative SPAs. </p> `; break; case 'contact': contentDiv.innerHTML = `<h2>Contact Us</h2> <p> Feel free to reach out to us! </p> <form> <label for="name">Name:</label> <input type="text" id="name" name="name" placeholder="Your Name" required> <label for="email">Email:</label> <input type="email" id="email" name="email" placeholder="Your Email" required> <label for="message">Message:</label> <textarea id="message" name="message" placeholder="Your Message" rows="4" required> </textarea> <button type="submit">Send Message</button> </form>`; break; default: contentDiv.innerHTML = '<h2>Page not found!</h2>'; } } Output: Comment More infoAdvertise with us Next Article Create a Single Page Application using HTML CSS & JavaScript S sahilali Follow Improve Article Tags : JavaScript Web Technologies Geeks Premier League JavaScript-Projects Geeks Premier League 2023 +1 More Similar Reads Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co 11 min read JavaScript Tutorial JavaScript is a programming language used to create dynamic content for websites. It is a lightweight, cross-platform, and single-threaded programming language. It's an interpreted language that executes code line by line, providing more flexibility.JavaScript on Client Side: On the client side, Jav 11 min read Web Development Web development is the process of creating, building, and maintaining websites and web applications. It involves everything from web design to programming and database management. Web development is generally divided into three core areas: Frontend Development, Backend Development, and Full Stack De 5 min read Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance 10 min read React Interview Questions and Answers React is an efficient, flexible, and open-source JavaScript library that allows developers to create simple, fast, and scalable web applications. Jordan Walke, a software engineer who was working for Facebook, created React. Developers with a JavaScript background can easily develop web applications 15+ min read React Tutorial React is a powerful JavaScript library for building fast, scalable front-end applications. Created by Facebook, it's known for its component-based structure, single-page applications (SPAs), and virtual DOM,enabling efficient UI updates and a seamless user experience.Note: The latest stable version 7 min read JavaScript Interview Questions and Answers JavaScript is the most used programming language for developing websites, web servers, mobile applications, and many other platforms. In Both Front-end and Back-end Interviews, JavaScript was asked, and its difficulty depends upon the on your profile and company. Here, we compiled 70+ JS Interview q 15+ min read Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact 12 min read 3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power 13 min read Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and 9 min read Like