-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.34 KB
/
Copy pathindex.html
File metadata and controls
78 lines (72 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ModvWorks – Building Modular Innovation</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="look.css">
</head>
<body>
<section class="hero">
<img src="images/modvworks-logo.png" alt="ModvWorks Logo" class="logo">
<h1>ModvWorks</h1>
<h2>Building Modular Innovation</h2>
<button id="cta-button">Join Early Access</button>
</section>
<section class="products">
<h2>Our Modular Products</h2>
<div class="product-grid">
<div class="product-card">
<img src="images/node-icon.png" alt="Node Icon">
<h3>Node</h3>
<p>Connects devices seamlessly.</p>
</div>
<div class="product-card">
<img src="images/sensor-icon.png" alt="Sensor Icon">
<h3>Sensor</h3>
<p>Monitors and collects smart data.</p>
</div>
<div class="product-card">
<img src="images/hub-icon.png" alt="Hub Icon">
<h3>Hub</h3>
<p>Central controller for your modules.</p>
</div>
<div class="product-card">
<img src="images/core-icon.png" alt="Core Icon">
<h3>Core</h3>
<p>The brain of your modular system.</p>
</div>
<div class="product-card">
<img src="images/link-icon.png" alt="Link Icon">
<h3>Link</h3>
<p>Bridges your modules together.</p>
</div>
</div>
</section>
<section class="about">
<h2>Why ModvWorks?</h2>
<p>
At ModvWorks, we design modular, smart, and scalable tech solutions for modern hardware and software ecosystems.
Our modules make it easy to build, connect, and innovate — one module at a time.
</p>
</section>
<section class="contact">
<h2>Stay Updated</h2>
<p>Sign up to receive updates and early access:</p>
<input type="email" id="email" placeholder="Your email">
<br>
<button id="subscribe-btn">Subscribe</button>
<div class="social-icons">
<a href="#">Instagram</a>
<a href="#">LinkedIn</a>
<a href="#">X/Twitter</a>
<a href="#">YouTube</a>
</div>
</section>
<footer>
© 2025 ModvWorks
</footer>
<script src="logic.js"></script>
</body>
</html>