forked from vr-varad/gsoc-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (91 loc) · 4.61 KB
/
index.html
File metadata and controls
96 lines (91 loc) · 4.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechFlow - Modern Web Solutions</title>
<link rel="stylesheet" href="styles.css">
<meta name="description" content="TechFlow provides modern web solutions with cutting-edge technology and innovative design.">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>">
</head>
<body>
<header>
<nav>
<a href="index.html" class="logo">🚀 TechFlow</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
<li><button class="theme-toggle" aria-label="Toggle theme">🌙</button></li>
</ul>
<button class="mobile-menu" aria-label="Toggle menu">☰</button>
</nav>
</header>
<main>
<section class="hero">
<div class="container">
<h1>Welcome to the Future of Web</h1>
<p>Discover cutting-edge solutions that transform your digital presence with modern design and powerful functionality.</p>
<a href="#features" class="btn">Explore Features</a>
</div>
</section>
<section id="features" class="section">
<div class="container">
<h2 class="section-title">Our Features</h2>
<div class="cards">
<div class="card">
<h3>🎨 Modern Design</h3>
<p>Beautiful, responsive interfaces that work seamlessly across all devices. Our designs follow the latest UI/UX principles to ensure optimal user experience.</p>
</div>
<div class="card">
<h3>⚡ Fast Performance</h3>
<p>Lightning-fast loading times and smooth interactions. We optimize every aspect of your website for maximum speed and efficiency.</p>
</div>
<div class="card">
<h3>🔒 Secure & Reliable</h3>
<p>Built with security in mind, featuring robust protection and reliable hosting solutions that keep your data safe and your site online.</p>
</div>
<div class="card">
<h3>📱 Mobile First</h3>
<p>Designed with mobile users in mind, ensuring your website looks and works perfectly on smartphones, tablets, and desktop computers.</p>
</div>
<div class="card">
<h3>🌙 Dark Mode</h3>
<p>Comfortable viewing experience in any lighting condition with our intelligent dark mode that adapts to user preferences.</p>
</div>
<div class="card">
<h3>🔧 Easy Maintenance</h3>
<p>Clean, well-documented code that's easy to maintain and extend. We follow best practices to ensure long-term sustainability.</p>
</div>
</div>
</div>
</section>
<section class="section" style="background: var(--bg-light);">
<div class="container">
<h2 class="section-title">Why Choose TechFlow?</h2>
<div class="cards">
<div class="card">
<h3>💡 Innovation</h3>
<p>We stay ahead of the curve with the latest technologies and design trends to deliver cutting-edge solutions.</p>
</div>
<div class="card">
<h3>🤝 Partnership</h3>
<p>We work closely with our clients to understand their needs and deliver solutions that exceed expectations.</p>
</div>
<div class="card">
<h3>🎯 Results</h3>
<p>Our focus is on delivering measurable results that drive growth and success for your business.</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 TechFlow. All rights reserved. Built with ❤️ and modern web technologies.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>