Untitled

 avatar
unknown
plain_text
2 months ago
3.0 kB
2
Indexable

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Digital Xperience - Home</title>
    <style>
        body { background-color: #f0f0f0; color: #333; }
        header, footer { background-color: #0056b3; color: white; padding: 10px; }
        nav a { color: #ff6600; margin: 0 10px; }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to Digital Xperience</h1>
    </header>
    <nav>
        <a href="index.html">Home</a>
        <a href="services.html">Services</a>
        <a href="contact.html">Contact Us</a>
    </nav>
    <main>
        <h2>Your Partner in Digital Success</h2>
        <p>Explore our services to enhance your digital presence.</p>
    </main>
    <footer>
        <p>&copy; 2025 Digital Xperience</p>
    </footer>
</body>
</html>
 

 
services.html (Services Page)
 

 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Digital Xperience - Services</title>
    <style>
        body { background-color: #f0f0f0; color: #333; }
        header, footer { background-color: #0056b3; color: white; padding: 10px; }
        nav a { color: #ff6600; margin: 0 10px; }
    </style>
</head>
<body>
    <header>
        <h1>Our Services</h1>
    </header>
    <nav>
        <a href="index.html">Home</a>
        <a href="services.html">Services</a>
        <a href="contact.html">Contact Us</a>
    </nav>
    <main>
        <h2>Website Design</h2>
        <p>Creating stunning and responsive websites.</p>
        <h2>Google AdWords (PPC)</h2>
        <p>Maximize your reach with targeted advertising.</p>
        <h2>SEO</h2>
        <p>Improve your search engine rankings.</p>
        <h2>Graphic Design</h2>
        <p>Visual designs that captivate and engage.</p>
        <h2>Social Media</h2>
        <p>Boost your brand's presence on social platforms.</p>
    </main>
    <footer>
        <p>&copy; 2025 Digital Xperience</p>
    </footer>
</body>
</html>
 

 
contact.html (Contact Us Page)
 

 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Digital Xperience - Contact Us</title>
    <style>
        body { background-color: #f0f0f0; color: #333; }
        header, footer { background-color: #0056b3; color: white; padding: 10px; }
        nav a { color: #ff6600; margin: 0 10px; }
    </style>
</head>
<body>
    <header>
        <h1>Contact Us</h1>
    </header>
    <nav>
        <a href="index.html">Home</a>
        <a href="services.html">Services</a>
        <a href="contact.html">Contact Us</a>
    </nav>
    <main>
        <h2>Get in Touch</h2>
        <p>Phone: 0645047253</p>
        <p>Email: contact@digitalxperience.com</p>
    </main>
    <footer>
        <p>&copy; 2025 Digital Xperience</p>
    </footer>
</body>
</html>
 
 
Editor is loading...
Leave a Comment