-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (100 loc) · 3.75 KB
/
index.html
File metadata and controls
122 lines (100 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My card</title>
<style>
.box {
border: 1vh solid rgb(244, 230, 245);
border-radius: 21px;
width:100%;
height:150vh;
box-sizing: border-box;
box-shadow: 15px 15px 10px 2px rgb(215, 184, 244);
outline: 2px solid violet;
background-color: #0b0a0a;
}
.box1{
display: flex;
text-align: center;
justify-content: center;
color: aliceblue;
}
h1{
text-shadow: 2px 2px 5px rgb(234, 139, 232);
display: flex;
text-align: center;
justify-content: center;
font-family:monospace ;
color: aliceblue;
}
img{
border-radius: 22px;
box-shadow: 11px 12px 9px 1px violet;
padding: 20px;
transition: background-image 0.5s ease-in-out;
}
img.hover{
transition: background-image 0.5s ease-in-out;
}
.box2{
text-align: center;
font-size: 50px;
font-weight: 100;
font-family:cursive;
text-shadow: 2px 15px 5px rgb(234, 139, 232);
color: aliceblue;
}
.box3{
font-family: cursive;
font-size: 28px;
color: aliceblue;
}
.social-links {
text-align: center;
margin-top: 30px;
font-size: 30px;
}
.social-links a {
margin: 0 15px;
text-decoration: none;
color: #007bff;
font-weight: 500;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #84ffca;
}
h3 {
font-size: 22px;
margin-bottom: 10px;
color: #333;
color: aliceblue;
}
</style>
</head>
<body>
<div class="box" >
<div class="box1"> <img src="image1.jpg" alt="Uddeshya gupta" height="348px" ></div>
<div class="box2">UDDESHYA GUPTA</div>
<h1>About Me </h1>
<div class="box3">
My name is Uddeshya Gupta, and I am a college student at KIET Group of Institutions, pursuing a degree in Computer Science and Engineering (CSE). Currently, I’m excited to be completing my first internship as a web developer, where I’m gaining valuable hands-on experience in building and optimizing websites.
I have a strong foundation in HTML, CSS, and JavaScript, and I’m passionate about creating user-friendly, responsive web applications. I enjoy tackling challenges and am always eager to learn new technologies to enhance my skills.
In my free time, I explore web design trends and work on personal projects that allow me to apply my knowledge creatively. I look forward to connecting with fellow developers and industry professionals!
</div>
<div class="social-links">
<h3>Connect with me:</h3>
<a
href="https://www.linkedin.com/in/uddeshya-gupta-876429298/"
target="_blank">LinkedIn</a>
<a href="https://github.com/Uddeshya-Gupta-eng" target="_blank">GitHub</a>
<a
href="https://www.instagram.com/uddeshya_gupta_26/"
target="_blank">Instagram</a>
<a href="https://mail.google.com/mail/u/0/#starred" target="_blank">Gmail</a>
</div>
</div>
</body>
</html>