-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutme.php
More file actions
167 lines (155 loc) · 4.1 KB
/
aboutme.php
File metadata and controls
167 lines (155 loc) · 4.1 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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#main{
background-color: #fff;
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-50%);
width:700px;
padding: 30px;
box-sizing: border-box;
border-radius: 10px;
box-shadow:0 15px 50px rgba(0,0,0,.2);
/*background-color: #e5e4d7;
margin-left: 10px;
margin-right: 320px;
margin-bottom: 10px;
margin-top:10px;
border-radius: 5px;
padding: 20px;
font-size: 110%;*/
}
#main2{
width:120px;
height: 140px;
background-image: url(img/shiva.jpg);
background-position: center center;
background-size: 140px 160px;
border-radius: 50%;
float:left;
shape-outside:circle();
margin: 60px 30px 30px 0;
box-shadow: 0 0 15px #999999;
}
p{
margin:25px;
padding: 5px;
text-align: justify;
line-height: 22px;
}
h1{
margin: 0 0 20px;
padding: 0;
font-size: 30px;
}
.social-menu ul {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 0;
margin-top: 150px;
display: flex;
}
.social-menu ul li {
list-style: none;
margin: 0 10px;
}
.social-menu ul li .fa {
color: #000000;
font-size: 25px;
line-height: 50px;
transition: .5s;
}
.social-menu ul li .fa:hover {
color: #ffffff;
}
.social-menu ul li a {
position: relative;
display: block;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: white;
text-align: center;
transition: 0.5s;
transform: translate(0,0px);
box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a:hover {
transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.social-menu ul li:nth-child(1) a:hover {
background-color: #deebdd;
background-image: linear-gradient(315deg, #deebdd 0%, #bbdbbe 74%);}
.social-menu ul li:nth-child(2) a:hover {
background-color: #deebdd;
background-image: linear-gradient(315deg, #deebdd 0%, #bbdbbe 74%);}
.social-menu ul li:nth-child(3) a:hover {
background-color: #deebdd;
background-image: linear-gradient(315deg, #deebdd 0%, #bbdbbe 74%);}
img{margin-top: 9px;
}
.nv ul{
float:right;
list-style-type: none;
margin-top: 25px;
margin-right: 100px;
}
.nv ul li{
display:inline-block;
}
.nv ul li a{
text-decoration: none;
padding:5px 10px;
border:1px solid black;
border-width: 2px;
transition: 0.6s ease;
position: relative;
display: inline-block;
padding: 12px 36px;
margin: 10px 0;
text-decoration: none;
text-transform: uppercase;
font-size: 18px;
letter-spacing: 2px;
border-radius: 7px;
color: black;
}
.nv ul li a:hover{
color: white;
background-color: #9dc5c3;
background-image: linear-gradient(315deg, #9dc5c3 0%, #5e5c5c 74%);
}
</style>
<title>About Me</title>
</head>
<body>
<div class="nv">
<ul >
<li class="active"><a href="index.php" >Home</a></li> </ul></div>
<div id="main">
<div id="main2"></div>
<h2> Shiva Singh</h2>
<p> I have doing B.tech in CSE from Babu Banarasi Das
National Institute Of Technology ans Management.I am a web developer with a years
of self-project experiences.I have also worked on different
programming languages such as,HTML,CSS,Bootstrap JavaScript, PHP ,
MYSQL ,PYTHON.<br>
Looking for an
organization which provides me the opportunity to improve
my skills and knowledge to growth along with the organization
objective. </p> <br><center><h3 style="margin-top:-30px;">Follow Me Through</h3></center>
</div>
<div class="social-menu">
<ul>
<li><a href=""><i class="fa fa-facebook"><img src="img/fb.png"></i></a></li>
<li><a href=""><i class="fa fa-twitter"><img src="img/youtube.png"></i></a></li>
<li><a href=""><i class="fa fa-instagram"><img src="img/twitter.png"></i></a></li>
</ul>
</div>
</body>
</html>