-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (138 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pavan's Portfolio</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #f0f0f0, #d9d9d9);
color: #333;
}
header {
background: #007BFF;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.8em;
}
header h2 {
font-size: 1.5em;
margin: 10px 0;
}
.project-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin: 40px auto;
padding: 0 20px;
max-width: 1200px;
}
.project {
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
width: 300px;
text-align: center;
}
.project:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.project img {
width: 100%;
height: 200px;
object-fit: cover;
}
.project h3 {
margin: 15px 0;
font-size: 1.2em;
}
.project a {
display: block;
padding: 10px;
font-size: 1em;
color: white;
background-color: #007BFF;
text-decoration: none;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
transition: background-color 0.3s ease;
}
.project a:hover {
background-color: #0056b3;
}
footer {
background: #007BFF;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 40px;
}
footer a {
color: #FFDD44;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.nav-links {
margin-top: 20px;
}
.nav-links a {
display: inline-block;
margin: 10px 20px;
padding: 10px 20px;
color: white;
background-color: #007BFF;
border-radius: 5px;
font-size: 1.1em;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav-links a:hover {
background-color: #0056b3;
transform: scale(1.1);
}
</style>
</head>
<body>
<header>
<h1>Pavan's Portfolio</h1>
<h2>I'm a Web Developer</h2>
</header>
<div class="project-container">
<div class="project">
<img src="./assets/images/movie-ranking.png" alt="Movie Ranking Project Preview">
<h3>Movie Ranking Project</h3>
<a href="./public/movie-ranking.html">View Project</a>
</div>
<div class="project">
<img src="./assets/images/birthday-invite.png" alt="Birthday Invite Project Preview">
<h3>Birthday Invite Project</h3>
<a href="./public/birthday-invite.html">View Project</a>
</div>
</div>
<div class="nav-links">
<a href="./public/about.html">About Me</a>
<a href="./public/contact.html">Contact Me</a>
</div>
<footer>
<p>© 2024 Pavan's Portfolio. All Rights Reserved.</p>
<p>
Follow me on
<a href="https://www.linkedin.com/in/pavan" target="_blank">LinkedIn</a> |
<a href="https://github.com/pavan" target="_blank">GitHub</a>
</p>
</footer>
</body>
</html>