|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>Mile High Tech Solutions</title> |
| 7 | + <style> |
| 8 | + body { |
| 9 | + font-family: Arial, sans-serif; |
| 10 | + background-color: #f0f4f8; |
| 11 | + margin: 0; |
| 12 | + padding: 0; |
| 13 | + color: #333; |
| 14 | + } |
| 15 | + h1 { |
| 16 | + color: #ffffff; |
| 17 | + font-size: 3em; |
| 18 | + font-weight: bold; |
| 19 | + margin: 0; |
| 20 | + } |
| 21 | + header { |
| 22 | + background-color: #003366; |
| 23 | + color: white; |
| 24 | + padding: 50px 30px 30px; |
| 25 | + text-align: center; |
| 26 | + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); |
| 27 | + } |
| 28 | + header p { |
| 29 | + font-size: 1.2em; |
| 30 | + margin-top: 10px; |
| 31 | + color: #dce6f0; |
| 32 | + } |
| 33 | + nav { |
| 34 | + background-color: #002244; |
| 35 | + text-align: center; |
| 36 | + } |
| 37 | + nav a { |
| 38 | + display: inline-block; |
| 39 | + padding: 14px 20px; |
| 40 | + color: white; |
| 41 | + text-decoration: none; |
| 42 | + } |
| 43 | + nav a:hover { |
| 44 | + background-color: #005599; |
| 45 | + } |
| 46 | + main { |
| 47 | + padding: 30px; |
| 48 | + max-width: 900px; |
| 49 | + margin: auto; |
| 50 | + } |
| 51 | + h2, h3 { |
| 52 | + color: #003366; |
| 53 | + } |
| 54 | + footer { |
| 55 | + background-color: #e0e0e0; |
| 56 | + text-align: center; |
| 57 | + padding: 20px; |
| 58 | + font-size: 14px; |
| 59 | + margin-top: 40px; |
| 60 | + } |
| 61 | + .services ul { |
| 62 | + list-style: none; |
| 63 | + padding-left: 0; |
| 64 | + } |
| 65 | + .services li { |
| 66 | + margin-bottom: 10px; |
| 67 | + } |
| 68 | + .pricing-table { |
| 69 | + background: #ffffff; |
| 70 | + border: 1px solid #ccc; |
| 71 | + padding: 20px; |
| 72 | + border-radius: 8px; |
| 73 | + } |
| 74 | + .contact-form input, |
| 75 | + .contact-form textarea { |
| 76 | + width: 100%; |
| 77 | + padding: 10px; |
| 78 | + margin-bottom: 10px; |
| 79 | + } |
| 80 | + .contact-form button { |
| 81 | + padding: 10px 20px; |
| 82 | + background-color: #003366; |
| 83 | + color: white; |
| 84 | + border: none; |
| 85 | + cursor: pointer; |
| 86 | + } |
| 87 | + .contact-form button:hover { |
| 88 | + background-color: #005599; |
| 89 | + } |
| 90 | + .calendar-button { |
| 91 | + background-color: #0073e6; |
| 92 | + color: white; |
| 93 | + padding: 10px 15px; |
| 94 | + text-decoration: none; |
| 95 | + display: inline-block; |
| 96 | + margin-top: 10px; |
| 97 | + border-radius: 5px; |
| 98 | + } |
| 99 | + .calendar-button:hover { |
| 100 | + background-color: #005bb5; |
| 101 | + } |
| 102 | + .confirmation { |
| 103 | + color: green; |
| 104 | + margin-top: 10px; |
| 105 | + } |
| 106 | + </style> |
| 107 | + |
| 108 | +</head> |
| 109 | +<body> |
| 110 | + <header style="display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;"> |
| 111 | + <div style="flex: 1; min-width: 200px;"> |
| 112 | + <h1>Mile High Tech Solutions</h1> |
| 113 | + </div> |
| 114 | + <div style="flex: 0 0 auto;"> |
| 115 | + <img src="your-photo.jpg" alt="Your Photo" style="width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #fff;" /> |
| 116 | + </div> |
| 117 | + <p>Your Local Denver Tech Help — Friendly, Fast, and Affordable</p> |
| 118 | + </header> |
| 119 | + |
| 120 | + <nav> |
| 121 | + <a href="#services">Services</a> |
| 122 | + <a href="#about">About</a> |
| 123 | + <a href="#contact">Contact</a> |
| 124 | + <a href="#faq">FAQ</a> |
| 125 | + <a href="#terms">Terms</a> |
| 126 | + </nav> |
| 127 | + |
| 128 | + <main> |
| 129 | + <section id="welcome"> |
| 130 | + <h2>Welcome to Mile High Tech Solutions</h2> |
| 131 | + <p>We specialize in hands-on tech troubleshooting for everyday users across Denver, Colorado. Whether you're struggling with a sluggish PC, printer issues, router setup, or just need some tutoring, we're here to make technology simple and stress-free.</p> |
| 132 | + </section> |
| 133 | + |
| 134 | + <section id="services" class="services"> |
| 135 | + <h2>Our Services</h2> |
| 136 | + <p style="font-size: 1.1em; color: #444; margin-bottom: 20px;">We offer personalized, on-site tech support tailored to your everyday needs. Whether it’s troubleshooting, upgrades, or setup, we bring expert help directly to your home with clarity, care, and affordability.</p> |
| 137 | +<ul style="display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-left: 0;"> |
| 138 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">Laptops, Desktops, All-in-Ones</li> |
| 139 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">Printers, Routers, Modems</li> |
| 140 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">PC Tune-ups and Slow Computer Troubleshooting</li> |
| 141 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">Virus and Malware Scanning & Removal (Windows only)</li> |
| 142 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">Data Backup and Transfers</li> |
| 143 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">New Computer Setup</li> |
| 144 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Operating System Installs:</strong> Maintaining Windows 10 and Installing Windows 11</li> |
| 145 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">Level 1 Hardware Installs (RAM, SSDs, Batteries)</li> |
| 146 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">Basic Software Installations</li> |
| 147 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;">One-on-One Tutoring and Tech Coaching</li> |
| 148 | +</ul> |
| 149 | + |
| 150 | + <div class="pricing-table"> |
| 151 | + <h3>Pricing</h3> |
| 152 | + <ul> |
| 153 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Diagnostic Service:</strong> $70</li> |
| 154 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Operating System Install:</strong> $30</li> |
| 155 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Hardware or Software Install:</strong> $30</li> |
| 156 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Data Backup and Transfer:</strong> $35</li> |
| 157 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>New Computer Setup:</strong> $30</li> |
| 158 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Tech Tutoring (per hour):</strong> $55</li> |
| 159 | + </ul> |
| 160 | + </div> |
| 161 | + </section> |
| 162 | + |
| 163 | + <section id="about"> |
| 164 | + <h2>About Us</h2> |
| 165 | + <p>Founded in Denver, Mile High Tech Solutions is a solo-owned business focused on delivering expert tech support with a personal touch. While we specialize in Windows systems (10 & 11), we’re growing every day and working to expand into Mac support in the future.</p> |
| 166 | + <p>Our goal is to make technology work for people — not the other way around. We value transparency, affordability, and honest service above all.</p> |
| 167 | + </section> |
| 168 | + |
| 169 | + <section id="contact"> |
| 170 | + <h2>Contact Us</h2> |
| 171 | + <p>Reach out via phone or email to schedule your service or ask a question.</p> |
| 172 | + <ul> |
| 173 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Phone:</strong> 720-965-6945</li> |
| 174 | + <li style="border: 1px solid #000; padding: 10px; border-radius: 6px; background-color: #fff;"><strong>Email:</strong> MileHighTechSolutions@outlook.com</li> |
| 175 | + </ul> |
| 176 | + |
| 177 | + <form class="contact-form" action="https://formspree.io/f/manbqngd" method="POST" target="_blank"> |
| 178 | + <input type="text" name="name" placeholder="Your Name" required /> |
| 179 | + <input type="email" name="email" placeholder="Your Email" required /> |
| 180 | + <textarea name="message" placeholder="How can we help you?" rows="5" required></textarea> |
| 181 | + <button type="submit">Send Message</button> |
| 182 | + <p class="confirmation" style="color: green; margin-top: 10px;">Thank you! Your message has been sent successfully.</p> |
| 183 | +</form> |
| 184 | + |
| 185 | + <h3>Schedule an Appointment</h3> |
| 186 | + <p>Click below to book a time with us. Your appointment will automatically appear on our calendar once scheduled.</p> |
| 187 | + <a href="https://calendly.com/psawaged26/30min" target="_blank" class="calendar-button">Set Appointment with Calendly</a> |
| 188 | + </section> |
| 189 | + |
| 190 | + <section id="faq"> |
| 191 | + <h2>Frequently Asked Questions</h2> |
| 192 | + <p><strong>Q: Do you work on Macs?</strong><br/>A: At the moment we specialize in Windows 10/11 systems. Mac support is coming soon!</p> |
| 193 | + <p><strong>Q: Do you come to my home?</strong><br/>A: Yes, we provide in-home service across the Denver Metro area.</p> |
| 194 | + <p><strong>Q: What if my issue can't be fixed?</strong><br/>A: If we can't resolve the issue, we’ll explain your options and you won’t be charged for a fix we can’t provide.</p> |
| 195 | + </section> |
| 196 | + |
| 197 | + <section id="terms"> |
| 198 | + <h2>Terms & Policies</h2> |
| 199 | + <p>By scheduling service with Mile High Tech Solutions, you agree to the following terms and conditions which help us provide quality service and protect both parties involved:</p> |
| 200 | + |
| 201 | + <p><strong>Authorization for Service:</strong> You authorize Mile High Tech Solutions to perform diagnostics, repairs, and other services on your device(s).</p> |
| 202 | + |
| 203 | + <p><strong>Diagnostic Fee:</strong> You understand that some services may include a non-refundable diagnostic fee, which covers the time spent assessing your device even if repairs are not completed.</p> |
| 204 | + |
| 205 | + <p><strong>Data Responsibility:</strong> It is your responsibility to back up all data and media before service. Mile High Tech Solutions is not liable for any data loss, corruption, or alteration under any circumstances.</p> |
| 206 | + |
| 207 | + <p><strong>Hardware Limitations:</strong> You acknowledge that some device failures (e.g., CPU or GPU failures) can occur due to pre-existing conditions and are not the responsibility of Mile High Tech Solutions.</p> |
| 208 | + |
| 209 | + <p><strong>Service Quality:</strong> All services are performed professionally and with care. However, we cannot guarantee full data recovery or device longevity when hardware issues are already present.</p> |
| 210 | + |
| 211 | + <p><strong>Consent to Contact:</strong> By submitting a service request, you consent to being contacted by phone or email regarding your service.</p> |
| 212 | +</section> |
| 213 | + </section> |
| 214 | + </main> |
| 215 | + |
| 216 | + <footer> |
| 217 | + © 2025 Mile High Tech Solutions LLC. All rights reserved. Proudly serving the Denver Metro area and surrounding areas. |
| 218 | + </footer> |
| 219 | +</body> |
| 220 | +</html> |
0 commit comments