-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (113 loc) · 4.71 KB
/
index.html
File metadata and controls
122 lines (113 loc) · 4.71 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
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Influx - Predictive Maintenance Solutions</title>
</head>
<body>
<header>
<div class="container">
<h1 class="logo">Influx</h1>
<nav>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Predictive Maintenance Solutions</h1>
<p>Influx leverages advanced algorithms and data analysis techniques to detect abnormal conditions before they cause significant problems, allowing proactive measures to prevent downtime and costly repairs.</p>
<a href="#contact" class="cta-btn">Get Started</a>
</div>
</section>
<section id="about">
<div class="container">
<h2>About Influx</h2>
<p class="p1">At Influx, we specialize in providing customized predictive maintenance solutions for industrial equipment. With years of industry expertise, we understand the unique challenges and requirements of our clients.</p>
<p class="p1">Our real-time monitoring capabilities, powered by advanced algorithms, enable us to identify abnormal conditions and potential failures, allowing proactive maintenance and minimizing downtime.</p>
<!-- Team -->
<h3>Meet Our Team</h3>
<div class="team">
<div class="team-member">
<img src="" alt="Team Member 1">
<h4>Aditya Kumar</h4>
<p>post</p>
</div>
<div class="team-member">
<img src="" alt="Team Member 2">
<h4>Rohan Kumar Behra</h4>
<p>post</p>
</div>
<div class="team-member">
<img src="" alt="Team Member 3">
<h4>Suraj Kumar</h4>
<p>post</p>
</div>
<div class="team-member">
<img src="" alt="Team Member 4">
<h4>Shivangi Sahay</h4>
<p>post</p>
</div>
<div class="team-member">
<img src="" alt="Team Member 5">
<h4>Namrata Gupta</h4>
<p>post</p>
</div>
<div class="team-member">
<img src="" alt="Team Member 6">
<h4>Lucky Kumar Siwan</h4>
<p>post</p>
</div>
<div class="team-member">
<img src="" alt="Team Member 7">
<h4>Athrava</h4>
<p>post</p>
</div>
</div>
</div>
</section>
<section id="features">
<div class="container">
<h2>Key Features</h2>
<div class="feature">
<i class="fas fa-chart-line"></i>
<h3>Advanced Analytics</h3>
<p>Our advanced analytics provide deep insights into equipment performance, enabling accurate predictions and early detection of potential failures.</p>
</div>
<div class="feature">
<i class="fas fa-cogs"></i>
<h3>Customized Solutions</h3>
<p>We develop tailored solutions to meet the specific needs of each client, ensuring the highest accuracy and relevance in predicting equipment failures.</p>
</div>
<div class="feature">
<i class="fas fa-shield-alt"></i>
<h3>Data Security</h3>
<p>We prioritize data security and privacy, implementing robust measures to protect our clients' equipment data and comply with industry standards.</p>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<form>
<input type="text" name="name" placeholder="Your Name">
<input type="email" name="email" placeholder="Your Email">
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 Influx. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>