-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
204 lines (198 loc) · 6.68 KB
/
index.html
File metadata and controls
204 lines (198 loc) · 6.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ayush Arun - Portfolio</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Icons -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css" rel="stylesheet"/>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #181818;
color: #f1f1f1;
}
header {
background: #202020;
padding: 80px 0;
text-align: center;
border-bottom: 1px solid #333;
}
header h1 {
font-size: 2.6rem;
font-weight: bold;
}
header p {
font-size: 1.2rem;
color: #bbb;
}
section {
padding: 60px 0;
}
h2 {
color: #0d6efd;
margin-bottom: 25px;
text-align: center;
}
.card {
background: #202020;
color: #eee;
border: 1px solid #333;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-6px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
footer {
background: #111;
color: #aaa;
padding: 20px 0;
text-align: center;
border-top: 1px solid #333;
}
footer a {
color: #0d6efd;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
input, textarea {
background: #2a2a2a !important;
color: #eee !important;
border: 1px solid #444 !important;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<h1>Ayush Arun</h1>
<p>Flutter Developer | Frontend Developer | C++ Programmer</p>
<div class="mt-3">
<a href="https://github.com/Ayush-Arun" target="_blank" class="btn btn-outline-light me-2">
<i class="bi bi-github"></i> GitHub
</a>
<a href="https://www.linkedin.com/in/ayush-arun-0549a4334/" target="_blank" class="btn btn-outline-primary">
<i class="bi bi-linkedin"></i> LinkedIn
</a>
</div>
</div>
</header>
<!-- About -->
<section id="about">
<div class="container text-center">
<h2>About Me</h2>
<p class="lead">
Passionate developer skilled in <b>Flutter, Dart, C++, HTML, CSS, JavaScript, and Bootstrap</b>.
Experienced in building cross-platform apps, responsive websites, and C++ projects.
Always exploring clean UI design and performance-oriented coding.
</p>
</div>
</section>
<!-- Skills -->
<section id="skills">
<div class="container">
<h2>Skills</h2>
<div class="row text-center">
<div class="col-md-3"><i class="bi bi-code-slash"></i> C, C++</div>
<div class="col-md-3"><i class="bi bi-phone"></i> Flutter, Dart</div>
<div class="col-md-3"><i class="bi bi-window"></i> HTML, CSS, JavaScript, Bootstrap</div>
<div class="col-md-3"><i class="bi bi-git"></i> Git & GitHub</div>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="bg-dark">
<div class="container">
<h2>Projects</h2>
<div class="row g-4">
<!-- CryptoApp -->
<div class="col-md-4">
<div class="card h-100 p-3">
<h5>CryptoApp (Flutter, C++)</h5>
<p>Cross-platform cryptocurrency tracker with real-time API data and optimized performance using C++ modules.</p>
</div>
</div>
<!-- Chess Game -->
<div class="col-md-4">
<div class="card h-100 p-3">
<h5>Chess Game (Flutter + Stockfish)</h5>
<p>Chess app with Stockfish engine integration for AI gameplay, move validation, and multiplayer support.</p>
</div>
</div>
<!-- C++ Game -->
<div class="col-md-4">
<div class="card h-100 p-3">
<h5>C++ Game Project</h5>
<p>A game built with C++ showcasing OOP, custom engine logic, and optimized rendering for smooth gameplay.</p>
</div>
</div>
<!-- Student Management -->
<div class="col-md-4">
<div class="card h-100 p-3">
<h5>Student Management System (C++)</h5>
<p>Console-based application for managing student records with add, edit, search, and file handling features.</p>
</div>
</div>
<!-- Library Management -->
<div class="col-md-4">
<div class="card h-100 p-3">
<h5>Library Management System (C++)</h5>
<p>C++ program to manage books, borrowing, and returns using data structures and file management.</p>
</div>
</div>
<!-- To-Do App -->
<div class="col-md-4">
<div class="card h-100 p-3">
<h5>To-Do List (JavaScript)</h5>
<p>Dynamic web-based task manager with add/edit/delete features and local storage persistence.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<div class="row justify-content-center">
<div class="col-md-8">
<!-- Replace with your Formspree endpoint -->
<form action="https://formspree.io/f/xvgbzopq" method="POST" class="p-4 border rounded bg-black shadow-sm">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" id="name" name="name" class="form-control" required />
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" id="email" name="_replyto" class="form-control" required />
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea id="message" name="message" rows="4" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary w-100">
<i class="bi bi-send"></i> Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Ayush Arun | Built with HTML, CSS, JavaScript & Bootstrap</p>
<p>
<a href="https://github.com/Ayush-Arun" target="_blank"><i class="bi bi-github"></i> GitHub</a> •
<a href="https://www.linkedin.com/in/ayush-arun-0549a4334/" target="_blank"><i class="bi bi-linkedin"></i> LinkedIn</a>
</p>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>