-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
187 lines (159 loc) · 4.31 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deepak Tharu - Frontend Developer</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
}
section {
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #333;
margin-bottom: 0.5rem;
}
p {
color: #555;
line-height: 1.5;
}
.skills {
display: flex;
justify-content: space-around;
margin-top: 1.5rem;
}
.skills div {
text-align: center;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f8f8f8;
}
footer {
text-align: center;
padding: 1rem;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
/* Portfolio Styling */
.portfolio {
margin-top: 2rem;
}
.project {
margin-bottom: 2rem;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.project:hover {
transform: scale(1.05);
}
.project img {
width: 100%;
height: auto;
}
.project-details {
padding: 1rem;
}
.project h3 {
margin-top: 0;
color: #333;
}
.project p {
color: #777;
}
.project a {
color: #333;
text-decoration: none;
font-weight: bold;
margin-left: 0.5rem;
transition: color 0.3s ease-in-out;
}
.project a:hover {
color: #555;
}
/* Animation */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation: fadeIn 1s ease-in-out;
}
</style>
</head>
<body>
<header>
<h1>Deepak Tharu</h1>
<p>Aspiring Frontend Developer</p>
</header>
<section>
<h2>About Me</h2>
<p>
Hello! I'm Deepak Tharu, a passionate learner and aspiring frontend developer. Currently diving into
HTML and CSS to build amazing user interfaces.
</p>
<h2>Skills</h2>
<div class="skills">
<div>
<h3>HTML</h3>
<p>Proficient</p>
</div>
<div>
<h3>CSS</h3>
<p>Proficient</p>
</div>
</div>
</section>
<section class="portfolio">
<h2>Portfolio</h2>
<div class="project fadeIn">
<img src="placeholder_image1.jpg" alt="Project 1">
<div class="project-details">
<h3>CSS Animation Showcase</h3>
<p>A collection of CSS animations and transitions.</p>
<a href="#" target="_blank">Demo</a> |
<a href="#" target="_blank">Source Code</a>
</div>
</div>
<div class="project fadeIn" style="animation-delay: 0.5s;">
<img src="placeholder_image2.jpg" alt="Project 2">
<div class="project-details">
<h3>Responsive Navigation</h3>
<p>A responsive navigation bar with CSS transitions.</p>
<a href="#" target="_blank">Demo</a> |
<a href="#" target="_blank">Source Code</a>
</div>
</div>
</section>
<footer>
<p>© 2024 Deepak Tharu</p>
</footer>
</body>
</html>