-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (104 loc) · 3.62 KB
/
Copy pathindex.html
File metadata and controls
118 lines (104 loc) · 3.62 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home x - Control Your World</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@2.3.1/dist/aos.css" />
<style>
.chat {
background: linear-gradient(45deg, #007bff, #00d4ff);
color: white;
font-size: 18px;
padding: 12px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s ease-in-out;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
position: fixed;
bottom: 10px;
right: 5px;
}
.chat:hover {
transform: scale(1.1);
background: linear-gradient(45deg, #0056b3, #0093e9);
}
</style>
</head>
<body>
<header class="hero">
<h1 data-aos="fade-down">
<img
src="favicon.png"
alt="logo"
width="40"
style="border-radius: 20%"
/>
Home X
</h1>
<h2 data-aos="fade-down">🌍 Smart Home Automation</h2>
<p data-aos="fade-up">
Control your appliances from anywhere in the world! 🔥
</p>
<div class="buttons">
<a href="app.apk" download class="download-btn">Download Now 🚀</a>
</div>
</header>
<section class="features">
<h2 data-aos="fade-right">Why Choose Our project? 🤖</h2>
<div class="feature-box">
<div class="feature" data-aos="fade-left">
<h3>🌐 Global Control</h3>
<p>Turn appliances ON/OFF from anywhere.</p>
</div>
<div class="feature" data-aos="fade-right">
<h3>🎙️ Voice Assistant</h3>
<p>Assistive technology for disabled users.</p>
</div>
<div class="feature" data-aos="fade-left">
<h3>📶 Works on Internet</h3>
<p>Control using WiFi, 4G, or 5G.</p>
</div>
<div class="feature" data-aos="fade-right">
<h3>📊 Real-Time Status</h3>
<p>Know which devices are ON/OFF instantly.</p>
</div>
<div class="feature" data-aos="fade-left">
<h3>🌱 Energy Efficient</h3>
<p>
Save electricity by automatically turning off unused appliances.
</p>
</div>
<div class="feature" data-aos="fade-right">
<h3>🔐 Secure & Encrypted</h3>
<p>
Advanced encryption ensures your home remains safe from hackers.
</p>
</div>
<div class="feature" data-aos="fade-left">
<h3>⚡ Instant Automation</h3>
<p>Set schedules and timers for lights, fans, and appliances.</p>
</div>
<div class="feature" data-aos="fade-right">
<h3>📢 Smart Notifications</h3>
<p>Receive alerts when devices turn on, off, or need maintenance.</p>
</div>
<div class="feature" data-aos="fade-left">
<h3>🎛️ Multi-User Access</h3>
<p>Share control with family members.</p>
</div>
</div>
</section>
<button class="chat" onclick="window.location.href='chat.html';">
💬 ChatBot
</button>
<script>
AOS.init();
</script>
</body>
</html>