-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
223 lines (199 loc) · 6.58 KB
/
about.html
File metadata and controls
223 lines (199 loc) · 6.58 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VNL.dev | About</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="icon.png" type="image/png">
<style>
:root {
--primary: #0a192f; /* Very dark blue */
--secondary: #112240; /* Dark navy blue */
--background: #020c1b; /* Darkest blue */
--surface: #0a192f; /* Dark blue */
--text: #e6f1ff; /* Light blue white */
--accent: #64ffda; /* Cyan accent */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--background);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
}
.navbar {
background: rgba(10, 25, 47, 0.95);
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent);
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
align-items: center;
}
.nav-links a {
color: var(--text);
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: all 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
background: var(--accent);
color: var(--background);
}
.about-container {
padding-top: 100px;
max-width: 1200px;
margin: 0 auto;
padding-inline: 2rem;
}
.about-container h1 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, var(--text), var(--accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
}
.about-container p {
text-align: center;
margin-bottom: 2rem;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.feature-card,
.github {
background: rgba(17, 34, 64, 0.8);
padding: 2rem;
border-radius: 8px;
border: 1px solid var(--accent);
text-align: center;
transition: all 0.3s ease;
}
.feature-card:hover,
.github:hover {
transform: translateY(-5px);
border-color: var(--text);
}
.languages {
text-align: center;
}
.languages h2 {
margin-bottom: 2rem;
color: var(--text);
}
.language-list {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
margin-top: 2rem;
}
.lang-tag {
background: rgba(100, 255, 218, 0.1);
color: var(--accent);
padding: 0.5rem 1rem;
border-radius: 4px;
border: 1px solid var(--accent);
}
@media (max-width: 768px) {
.nav-content {
flex-direction: column;
gap: 1rem;
}
.nav-links {
flex-direction: column;
text-align: center;
}
.about-container h1 {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<div class="logo">VNL.dev</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="explore.html">Explore</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<main class="about-container">
<h1>About VNL</h1>
<p>Virtual Notebook Language - A Modern Multi-Language Platform</p>
<div class="feature-grid">
<div class="feature-card">
<h3>Multiple Languages</h3>
<p>Support for 18+ programming languages</p>
</div>
<div class="feature-card">
<h3>Easy Integration</h3>
<p>Seamless code integration across languages</p>
</div>
<div class="feature-card">
<h3>Modern Tools</h3>
<p>Built with latest development standards</p>
</div>
<div class="github">
<h3>Open Source</h3>
<p>Contribute to the project on GitHub</p>
</div>
</div>
<section class="languages">
<h2>Supported Languages</h2>
<div class="language-list">
<span class="lang-tag">JavaScript</span>
<span class="lang-tag">Python</span>
<span class="lang-tag">TypeScript</span>
<span class="lang-tag">HTML/CSS</span>
<span class="lang-tag">PHP</span>
<span class="lang-tag">Ruby</span>
<span class="lang-tag">Go</span>
<span class="lang-tag">Rust</span>
<span class="lang-tag">Java</span>
<span class="lang-tag">C#</span>
<span class="lang-tag">C++</span>
<span class="lang-tag">Swift</span>
<span class="lang-tag">Kotlin</span>
<span class="lang-tag">Lua</span>
</div>
</section>
</main>
</body>
</html>