Browse Source

Add 'index.html'

ringflow 2 weeks ago
parent
commit
ee461b2e6f
1 changed files with 166 additions and 0 deletions
  1. 166 0
      index.html

+ 166 - 0
index.html

@@ -0,0 +1,166 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Ringflow - Professional Communication Solutions</title>
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
+    <style>
+        body {
+            font-family: Arial, sans-serif;
+            margin: 0;
+            padding: 0;
+            background-color: #f9f9f9;
+        }
+
+        header {
+            background-color: #0044cc;
+            color: white;
+            padding: 20px;
+            text-align: center;
+        }
+
+        header h1 {
+            margin: 0;
+            font-size: 2.5em;
+        }
+
+        header p {
+            margin: 5px 0 0;
+            font-size: 1.2em;
+        }
+
+        nav {
+            display: flex;
+            justify-content: center;
+            gap: 20px;
+            padding: 10px;
+            background-color: #002a80;
+        }
+
+        nav a {
+            color: white;
+            text-decoration: none;
+            font-size: 1.1em;
+        }
+
+        nav a:hover {
+            text-decoration: underline;
+        }
+
+        .container {
+            padding: 20px;
+            max-width: 1200px;
+            margin: 0 auto;
+        }
+
+        .section {
+            margin-bottom: 40px;
+            background-color: white;
+            border-radius: 8px;
+            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+            overflow: hidden;
+        }
+
+        .section h2 {
+            background-color: #0044cc;
+            color: white;
+            margin: 0;
+            padding: 10px 20px;
+            font-size: 1.8em;
+        }
+
+        .section p {
+            padding: 20px;
+            font-size: 1.1em;
+            line-height: 1.6;
+        }
+
+        .btn {
+            display: inline-block;
+            margin: 20px;
+            padding: 10px 20px;
+            color: white;
+            background-color: #0044cc;
+            text-decoration: none;
+            border-radius: 5px;
+            font-size: 1.1em;
+            transition: background-color 0.3s;
+        }
+
+        .btn:hover {
+            background-color: #003399;
+        }
+
+        footer {
+            text-align: center;
+            padding: 20px;
+            background-color: #002a80;
+            color: white;
+        }
+
+        footer a {
+            color: white;
+            text-decoration: none;
+            margin: 0 10px;
+        }
+
+        footer a:hover {
+            text-decoration: underline;
+        }
+
+        .icon {
+            display: inline-flex;
+            align-items: center;
+            gap: 10px;
+        }
+    </style>
+</head>
+<body>
+    <header>
+        <h1>Welcome to Ringflow</h1>
+        <p>Your Comprehensive Solution for Virtual Phone Numbers</p>
+    </header>
+
+    <nav>
+        <a href="https://www.ringflow.com/">Home</a>
+        <a href="https://www.ringflow.com/features">Features</a>
+        <a href="https://www.ringflow.com/pricing">Pricing</a>
+        <a href="https://www.ringflow.com/contact">Contact</a>
+    </nav>
+
+    <div class="container">
+        <div class="section">
+            <h2><span class="icon"><i class="fas fa-phone"></i></span> Why Choose Ringflow?</h2>
+            <p>Ringflow provides cutting-edge virtual phone number solutions tailored to modern communication needs. Whether you need seamless connectivity or advanced features, we have it all.</p>
+            <a href="https://www.ringflow.com/" class="btn">Learn More</a>
+        </div>
+
+        <div class="section">
+            <h2><span class="icon"><i class="fas fa-cogs"></i></span> Features</h2>
+            <p>Discover powerful features like call routing, voicemail transcription, and multi-device support. Our tools are designed to boost your productivity and keep you connected.</p>
+            <a href="https://www.ringflow.com/features" class="btn">Explore Features</a>
+        </div>
+
+        <div class="section">
+            <h2><span class="icon"><i class="fas fa-dollar-sign"></i></span> Affordable Plans</h2>
+            <p>Get access to premium services without breaking the bank. Our pricing plans are designed to suit businesses of all sizes.</p>
+            <a href="https://www.ringflow.com/pricing" class="btn">View Pricing</a>
+        </div>
+
+        <div class="section">
+            <h2><span class="icon"><i class="fas fa-envelope"></i></span> Get in Touch</h2>
+            <p>Have questions? Contact us today, and our support team will assist you promptly.</p>
+            <a href="https://www.ringflow.com/contact" class="btn">Contact Us</a>
+        </div>
+    </div>
+
+    <footer>
+        <p>&copy; 2024 Ringflow. All Rights Reserved.</p>
+        <p>
+            <a href="https://www.ringflow.com/privacy">Privacy Policy</a> |
+            <a href="https://www.ringflow.com/terms">Terms of Service</a>
+        </p>
+    </footer>
+</body>
+</html>