-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
99 lines (81 loc) · 1.99 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
* {
font-family: 'Fredoka One', cursive;
}
.home {
margin: 10px 40px 0px 1400px;
max-width: fit-content;
position: static;
}
#about {
background-color: #f2f2f2;
padding: 40px 0;
}
.container {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
h2 {
font-size: 5em;
margin-bottom: 30px;
}
p {
font-size: 1.7em;
line-height: 1.6;
margin-bottom: 20px;
}
.btn {
display: inline-block;
background-color: #007bff;
color: #fff;
font-size: 18px;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
}
.animation {
text-align: center;
text-shadow: 0 10 10px rgba(239, 50, 50, 0.8);
animation: glowing 2s ease-in-out infinite;
}
@keyframes glowing {
0% {
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
50% {
font-size: 1.75em;
text-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}
100% {
font-size: 1.7em;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
}
</style>
</head>
<body>
<div class="home">
<a href="./index.html"><img src="./images/home.png" alt=""></a>
</div>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p class="animation">👋 Hi, I’m @parkkrrr <br>
💞️ I’m looking to collaborate on ... <br>
👀 I’m interested in C Programming. <br>
🌱 I’m currently learning Data Structures in C . <br>
📫 How to reach me ... prakharverma2019@gmail.com</p>
</div>
</section>
</body>
</html>