forked from ProgrammerGaurav/programmergaurav.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
executable file
·122 lines (110 loc) · 3.38 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<title>ProgrammerGaurav | Gaurav Gupta | portfolio | Web Developer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<style>
.myprotitle {
font-size: 40px;
}
.project p {
color: #fff;
font-size: larger;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
visibility: hidden;
opacity: 0;
transition: opacity 1s, visibility 1s;
width: 100%;
}
.project img {
display: block;
width: 100%;
height: 100%;
transition-duration: 1s;
}
.project img {
width: 100%;
}
.project:hover img {
filter: blur(5px) grayscale(100%);
}
.project:hover p {
visibility: visible;
opacity: 1;
}
.project p a {
line-height: 50px;
color: #8c43ff;
padding: 10px 25px 10px 25px;
border: 1px solid #8c43ff;
border-radius: 25px;
transition-duration: 1s;
}
.project p a:hover {
text-decoration: none;
color: #fff;
background-color: #8c43ff;
}
</style>
</head>
<body>
<div class="container-fluid ">
<div class="row text-center d-flex justify-content-center">
<div class="col-12 myprotitle">
My projects
</div>
<div class="col-12 col-xl-3 mx-1 my-3 project">
<img src="img/ddos.png" alt="">
<p>
Happy Birthday
<br>
<a href="#">
Visit
</a>
</p>
</div>
<div class="col-12 col-xl-3 mx-1 my-3 project">
<img src="img/ddos.png" alt="">
<p>
Happy Birthday
<br>
<a href="#">
Visit
</a>
</p>
</div>
<div class="col-12 col-xl-3 mx-1 my-3 project">
<img src="img/ddos.png" alt="">
<p>
Happy Birthday
<br>
<a href="#">
Visit
</a>
</p>
</div>
</div>
</div>
</body>
<script src="js/typed.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/script.js"></script>
<script>
</script>
</html>