-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevelopers.php
63 lines (63 loc) · 1.22 KB
/
developers.php
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
<!DOCTYPE html>
<html>
<head>
<title>Developers</title>
<style type="text/css">
body{
background: lightgreen;
}
.founder{
width: 200px;
height: 200px;
background: transparent;
border: none;
position: absolute;
left: 30%;
padding: 0px;
}
.founder img{
z-index: -1;
position: relative;
}
.founder .page-header{
position: relative;
top: 0px;
color: white;
text-align: center;
background: rgba(0,0,0,.8);
padding: 3px;
z-index: 1;
}
.founder .footer{
position: absolute;
color: white;
top: 83%;
text-align: center;
background: rgba(0,0,0,.4);
padding: 3px;
z-index: 1;
}
.founder:hover, img:focus{
z-index: 1;
transform: scale(1.1);
cursor: pointer;
transition: .4s ease-out;
box-shadow: 3px 3px 6px rgba(0,0,0,.3);
}
.founder:hover, .page-header:focus{
background: rgba(0,0,0,.3);
}
</style>
</head>
<body>
<div class="founder">
<div class="page-header">
The Co-founder of Ulibrary.org
</div>
<img src="img/8.jpeg" width="200px" height="200px" title="hello am Arnauld Anguh, the co-founder of Ulibrary.org">
<p class="footer">
Arnauld Anguh visit: <a href="">www.theblogger.com</a> for more
</p>
</div>
</body>
</html>