-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (85 loc) · 2.77 KB
/
index.html
File metadata and controls
94 lines (85 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Dear Indian Startups: Let’s Build Chips</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: #0a0a0a;
color: #f5f5f5;
}
header {
text-align: center;
padding: 60px 20px;
background: linear-gradient(to right, #1f1f1f, #20232a);
}
header h1 {
font-size: 2.5rem;
color: #00ffe0;
}
header p {
font-size: 1.2rem;
color: #ccc;
}
section {
padding: 40px 20px;
max-width: 800px;
margin: auto;
}
h2 {
color: #00ffe0;
}
.letter {
background-color: #1b1b1b;
padding: 20px;
border-left: 5px solid #00ffe0;
margin-top: 20px;
line-height: 1.6;
}
.footer {
text-align: center;
padding: 20px;
background-color: #111;
color: #777;
font-size: 0.9rem;
}
a {
color: #00ffe0;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>India’s Future Runs on Silicon</h1>
<p>An Open Letter to Indian Tech Startups: From Software to Semiconductors</p>
</header>
<section>
<h2>Too Much Code, Too Little Core</h2>
<p>Indian startups have made huge strides in apps and services — but it's time to go deeper. We import over 90% of our semiconductors. That’s both a weakness and an opportunity.</p>
</section>
<section>
<h2>Chips Are the New Gold</h2>
<p>AI, EVs, 5G, even space missions — they all rely on chips. If India wants to lead the future, we must own the silicon layer.</p>
</section>
<section>
<h2>Dear Indian Founders,</h2>
<div class="letter">
<p>The next wave of innovation won’t come from faster deliveries — it’ll come from faster processors. From fabs to fabs, chips are the beating heart of the digital world.</p>
<p>If India wants to lead in AI, EVs, or space — we need to own the silicon stack. This is a national mission, and we need YOU to step up.</p>
<p>Build chip design startups. Build tools that support semiconductor R&D. Push for India's own fab ecosystem. Be the builder of tomorrow’s India — etched in silicon.</p>
<p><strong>Sincerely,</strong><br>Pushkarini</p>
</div>
</section>
<div class="footer">
© 2025 | Built for India’s Tech Future | <a href="#https://github.com/Pushkarini579/ecell">link to github</a>
</div>
</body>
</html>