diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6b665aa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/images/background1.webp b/images/background1.webp new file mode 100644 index 0000000..f934beb Binary files /dev/null and b/images/background1.webp differ diff --git a/images/call-center.jpg b/images/call-center.jpg new file mode 100644 index 0000000..8be06bd Binary files /dev/null and b/images/call-center.jpg differ diff --git a/images/content writing.webp b/images/content writing.webp new file mode 100644 index 0000000..96b132c Binary files /dev/null and b/images/content writing.webp differ diff --git a/images/coperate.webp b/images/coperate.webp new file mode 100644 index 0000000..c6bdb66 Binary files /dev/null and b/images/coperate.webp differ diff --git a/images/creative.webp b/images/creative.webp new file mode 100644 index 0000000..2f7fb7e Binary files /dev/null and b/images/creative.webp differ diff --git a/images/digital-agency.jpg b/images/digital-agency.jpg new file mode 100644 index 0000000..a9ccdad Binary files /dev/null and b/images/digital-agency.jpg differ diff --git a/images/download.jpg b/images/download.jpg new file mode 100644 index 0000000..d3c2882 Binary files /dev/null and b/images/download.jpg differ diff --git a/images/graphic (1).jpg b/images/graphic (1).jpg new file mode 100644 index 0000000..0072280 Binary files /dev/null and b/images/graphic (1).jpg differ diff --git a/images/images.jpeg b/images/images.jpeg new file mode 100644 index 0000000..fab64a3 Binary files /dev/null and b/images/images.jpeg differ diff --git a/images/logo.jpg b/images/logo.jpg new file mode 100644 index 0000000..556d56d Binary files /dev/null and b/images/logo.jpg differ diff --git a/images/marketing.webp b/images/marketing.webp new file mode 100644 index 0000000..73767fe Binary files /dev/null and b/images/marketing.webp differ diff --git a/images/seo.jpg b/images/seo.jpg new file mode 100644 index 0000000..91cf09d Binary files /dev/null and b/images/seo.jpg differ diff --git a/images/social-media.jpg b/images/social-media.jpg new file mode 100644 index 0000000..b520419 Binary files /dev/null and b/images/social-media.jpg differ diff --git a/images/web-dev.avif b/images/web-dev.avif new file mode 100644 index 0000000..c7dfc29 Binary files /dev/null and b/images/web-dev.avif differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..ed6a4aa --- /dev/null +++ b/index.html @@ -0,0 +1,250 @@ + + + + + + Digital Agency - Empowering Your Online Presence + + + + + + + + + +
+ + Digital Agency + + + + + + + +
+ + +
+
+

Transform Your Ideas Into Reality

+

+ We help businesses grow with innovative digital solutions. Start your + journey today! +

+ Get Started +
+
+ + + +
+

Our Company Services

+

List of the best services delivered to our clients

+
+
+ +

Marketing Services

+

Promoting and positioning a product in the market to attract potential customers, drive sales, and build brand awareness.

+
+ +
+ +

Web App Development

+

Process of designing, building, and maintaining applications that run on different web browsers with ease .

+
+ +
+ +

24/7 call center services

+

Provide round-the-clock support to customers, ensuring that businesses can handle inquiries, complaints, or assistance requests.

+
+ +
+ +

Social Media Marketing

+

Social media platforms to connect with your audience, build your brand, increase sales, and drive website traffic.

+
+ +
+ +

Coperate Business

+

Large-scale organizations or companies engaged in commercial activities across industries such as finance, technology.

+
+ +
+ +

Creative Consultancy

+

Service-oriented business that provides innovative and strategic solutions to help organizations enhance their branding, marketing, product design.

+
+
+
+ +

Pricing according to services

+
+ +
+ +
+ +
+ +
+ +
+ + +

Meet Our Team

+

+ Our talented professionals are here to make your project a success. +

+ +
+
+ Team Member 1 +

John Doe

+

Web Developer

+ +
+ +
+ Team Member 2 +

Jane Smith

+

Graphic Designer

+ +
+ +
+ Team Member 3 +

Michael Brown

+

SEO Specialist

+ +
+ +
+ Team Member 4 +

Emily Davis

+

Content Writer

+ +
+
+ + +

Contact Us Today

+
+
+ + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + diff --git a/scripts.js b/scripts.js new file mode 100644 index 0000000..e062f7a --- /dev/null +++ b/scripts.js @@ -0,0 +1,73 @@ +function toggleNavigationLinks() { + try { + const x = document.getElementById("myLinks"); + if (!x) throw new Error("Element with ID 'myLinks' not found."); + + x.style.display = x.style.display === "block" ? "none" : "block"; + } catch (error) { + console.error("Error toggling navigation links: ", error.message); + alert("An error occurred while toggling the navigation links. Please try again."); + } + } + + function closeNavigationLinks() { + const x = document.getElementById("myLinks"); + if (x) { + x.style.display = "none"; + } + } + // Form validation function (Simplified) + function validateForm() { + try { + const firstName = document.getElementById("fname").value.trim(); + const lastName = document.getElementById("lname").value.trim(); + const letterRegex = /^[A-Za-z]+$/; + + if (!letterRegex.test(firstName)) { + alert("First Name should only contain letters."); + return false; // Prevent form submission + } + + if (!letterRegex.test(lastName)) { + alert("Last Name should only contain letters."); + return false; // Prevent form submission + } + + // If validation passes, show success modal + showSuccessModal(); + return false; // Prevent form submission to show the modal + + } catch (error) { + console.error("Form validation error: ", error.message); + alert("An error occurred during form validation. Please try again."); + return false; // Prevent form submission + } + } + + // Show success modal (Simplified) + function showSuccessModal() { + try { + const modal = document.getElementById("successModal"); + if (modal) { + modal.style.display = "block"; // Show modal + } else { + throw new Error("Modal element not found."); + } + } catch (error) { + console.error("Error displaying the modal: ", error.message); + alert("An error occurred while displaying the success message. Please try again."); + } + } + + // Close the modal when clicked on the close button + document.querySelector(".close").onclick = function() { + document.getElementById("successModal").style.display = "none"; + } + + // Close the modal if clicked outside of it + window.onclick = function(event) { + const modal = document.getElementById("successModal"); + if (event.target === modal) { + modal.style.display = "none"; + } + } \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..0059e06 --- /dev/null +++ b/styles.css @@ -0,0 +1,573 @@ +/* Style the navigation menu */ +.body{ + font-family: 'Inter', sans-serif; + } + html { + scroll-behavior: smooth; + } + .topnav { + overflow: hidden; + background-color: #333; + position: relative; + } + + /* Hide the links inside the navigation menu (except for logo/home) */ + .topnav #myLinks { + display: none; + } + + + /* Style navigation menu links */ + .topnav a { + color: white; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; + display: block; + } + + /* Style the hamburger menu */ + .topnav a.icon { + background: black; + display: block; + position: absolute; + right: 0; + top: 0; + } + + /* Add a grey background color on mouse-over */ + .topnav a:hover { + background-color: #ddd; + color: black; + } + + /* Style the active link (or home/logo) */ + .active { + background-color: #333; + color: white; + } + + + + + /* General Hero Section Styling (Applies to all breakpoints) */ + .hero { + display: flex; + align-items: center; + justify-content: center; + height: 100vh; + background: linear-gradient(to right, #0f2027, #203a43, #2c5364), + url('download.jpg') no-repeat center center/cover; + color: white; + text-align: center; + padding: 0 2rem; + } + + .hero-content { + max-width: 800px; + } + + .hero-content h1 { + font-size: 3rem; + font-weight: 600; + margin-bottom: 1rem; + } + + .hero-content p { + font-size: 1.2rem; + margin-bottom: 2rem; + line-height: 1.5; + } + + .cta-button { + display: inline-block; + padding: 1rem 2rem; + font-size: 1rem; + border-radius: 5px; + background-color: #00bcd4; + color: white; + text-decoration: none; + transition: background-color 0.3s ease; + } + + .cta-button:hover { + background-color: #008c9e; + } + + + + + * { + margin: 0; + padding: 0; + box-sizing: border-box; + } + + /* Body and general wrapper styles */ + body { + font-family: 'Arial', sans-serif; + background-color: #f4f4f4; + color: #333; + } + + .wrapper { + max-width: 1200px; + margin: 0 auto; + padding: 20px; + text-align: center; + } + + h1 { + font-size: 2.5rem; + margin-bottom: 10px; + } + + p { + font-size: 1.1rem; + color: #555; + margin-bottom: 30px; + } + + /* Card styles */ + .content-box { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); + gap: 20px; + } + + .card { + background-color: #fff; + border-radius: 10px; + padding: 20px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + transition: all 0.3s ease-in-out; + position: relative; + } + #pricing{ + margin-top: 20px; + text-align: center; + } + .header{ + background-color: #23abdc" + } + #team{ + margin-top: 20px; + text-align: center; + } + .team-description{ + text-align: center; + } + + .card i { + font-size: 3rem; + color: #3498db; + margin-bottom: 15px; + } + + .card h2 { + font-size: 1.5rem; + color: #333; + margin-bottom: 10px; + } + + .card p { + font-size: 1rem; + color: #555; + } + + /* Hover effects with images */ + .card:nth-child(1):hover { + background: linear-gradient(45deg, + rgba(10, 114, 233, 0.8) 0%, + rgba(51, 163, 249, 0.8) 100%), + url('images/marketing.webp'); + background-size: cover; + color: white; + } + + .card:nth-child(2):hover { + background: linear-gradient(45deg, + rgba(10, 114, 233, 0.8) 0%, + rgba(51, 163, 249, 0.8) 100%), + url('images/images.jpeg'); + background-size: cover; + color: white; + } + + .card:nth-child(3):hover { + background: linear-gradient(45deg, + rgba(10, 114, 233, 0.8) 0%, + rgba(51, 163, 249, 0.8) 100%), + url('images/call-center.jpg'); + background-size: cover; + color: white; + } + + .card:nth-child(4):hover { + background: linear-gradient(45deg, + rgba(10, 114, 233, 0.8) 0%, + rgba(51, 163, 249, 0.8) 100%), + url('images/social-media.jpg'); + background-size: cover; + color: white; + } + + .card:nth-child(5):hover { + background: linear-gradient(45deg, + rgba(10, 114, 233, 0.8) 0%, + rgba(51, 163, 249, 0.8) 100%), + url('images/coperate.webp'); + background-size: cover; + color: white; + } + + .card:nth-child(6):hover { + background: linear-gradient(45deg, + rgba(10, 114, 233, 0.8) 0%, + rgba(51, 163, 249, 0.8) 100%), + url('images/creative.webp'); + background-size: cover; + color: white; + } + + + + + + .columns { + float: left; + width: 33.3%; + padding: 8px; + margin-bottom: 20px; + } + + .price { + list-style-type: none; + border: 1px solid #eee; + margin: 0; + padding: 0; + -webkit-transition: 0.3s; + transition: 0.3s; + } + + .price:hover { + box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2) + } + + .price .header { + background-color: #111; + color: white; + font-size: 25px; + } + + .price li { + border-bottom: 1px solid #eee; + padding: 20px; + text-align: center; + } + + .price .grey { + background-color: #eee; + font-size: 20px; + } + + .button { + display: inline-block; + padding: 1rem 2rem; + background-color: #00bcd4; + color: white; + text-decoration: none; + font-size: 1rem; + border-radius: 5px; + transition: background-color 0.3s ease; + } + .team-container { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; + padding: 20px; + text-align: center; + } + + /* Styling each team member */ + .team-member { + border: 1px solid #ddd; + border-radius: 10px; + overflow: hidden; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + background-color: #f9f9f9; + transition: transform 0.3s; + } + .team-member:hover { + transform: translateY(-10px); + } + + .team-member img { + width: 100%; + height: auto; + } + + .team-member h3 { + margin: 15px 0 5px; + font-size: 1.25em; + color: #333; + } + + .team-member p { + color: #777; + font-size: 0.95em; + } + + /* Social links */ + .social-links { + margin-top: 10px; + justify-content: center; + } + + .social-links a { + margin: 0 5px; + color: #555; + font-size: 1.2em; + transition: color 0.3s; + } + + .social-links a:hover { + color: #007BFF; + } + .modal { + display: none; + position: fixed; + z-index: 1; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgba(0, 0, 0, 0.4); + } + .modal-content { + background-color: #fefefe; + margin: 15% auto; + padding: 20px; + border: 1px solid #888; + width: 80%; + } + .close { + color: #aaa; + float: right; + font-size: 28px; + font-weight: bold; + } + .close:hover, + .close:focus { + color: black; + text-decoration: none; + cursor: pointer; + } + + + + + input[type=text], input[type=email], input[type=tel], select, textarea { + width: 100%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + margin-top: 6px; + margin-bottom: 16px; + resize: vertical; + } + + /* Style the submit button with a specific background color etc */ + input[type=submit] { + background-color: #00bcd4; + color: white; + padding: 1rem 2rem; + font-size: 1rem; + border-radius: 5px; + cursor: pointer; + text-align: center; + display: block; + margin: 0 auto; + transition: background-color 0.3s ease; + } + + /* When moving the mouse over the submit button, add a darker green color */ + + + /* Add a background color and some padding around the form */ + .container { + border-radius: 5px; + background-color: #f2f2f2; + padding: 20px; + } + + /* Footer styles */ + footer { + background-color: #333; + color: white; + padding: 20px 0; + text-align: center; + } + .footer-container { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; + padding: 0 20px; + } + .footer-links, .social-links { + display: flex; + gap: 15px; + } + .footer-links a, .social-links a { + color: white; + text-decoration: none; + font-size: 14px; + } + .footer-links a:hover, .social-links a:hover { + text-decoration: underline; + } + .copyright { + margin-top: 10px; + font-size: 12px; + } + + + /* Responsive Design */ + @media (max-width: 768px) { + h1 { + font-size: 2rem; + } + + .content-box { + grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); + } + + .card { + padding: 15px; + } + + .card i { + font-size: 2.5rem; + } + + .card h2 { + font-size: 1.3rem; + } + + .card p { + font-size: 0.95rem; + } + } + + @media (max-width: 480px) { + h1 { + font-size: 1.8rem; + } + + .content-box { + grid-template-columns: 1fr; + } + + .card { + padding: 10px; + } + + .card i { + font-size: 2rem; + } + + .card h2 { + font-size: 1.2rem; + } + + .card p { + font-size: 0.9rem; + } + } + + /* Responsive Design */ + + /* Desktop (1200px and above) */ + @media (min-width: 1200px) { + .hero { + padding: 0 5rem; + } + + .hero-content h1 { + font-size: 4rem; /* Larger text for desktop */ + } + + .hero-content p { + font-size: 1.5rem; /* Larger description text */ + } + + .cta-button { + font-size: 1.2rem; + padding: 1.2rem 2.5rem; + + } + + } + + + + + /* Tablet (768px to 1199px) */ + @media (min-width: 768px) and (max-width: 1199px) { + .hero { + padding: 0 3rem; + } + + .hero-content h1 { + font-size: 3rem; + } + + .hero-content p { + font-size: 1.2rem; + } + + .cta-button { + font-size: 1rem; + padding: 1rem 2rem; + } + } + + /* Mobile (320px to 767px) */ + @media (max-width: 767px) { + .hero { + flex-direction: column; /* Stack content vertically */ + padding: 2rem 1rem; + } + + .hero-content h1 { + font-size: 2rem; + } + + .hero-content p { + font-size: 1rem; + margin-bottom: 1.5rem; + } + + .cta-button { + font-size: 0.9rem; + padding: 0.8rem 1.5rem; + } + } + + @media only screen and (max-width: 600px) { + .columns { + width: 100%; + } + } + + + + + + + + + \ No newline at end of file