"Animated PopUp , Animated subscribe popup, animated alert box in css"
Bootstrap 4.0.0 Snippet by RAJKUMAR123

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<body class="pop-up">
<div id="pop-up">
<!-- <img src="images/cross.png"> -->
<div class="container">
<h1>SUBSCRIBE OUR WEBSITE</h1>
<p>This Designe By <strong>RAJ KUMAR</strong> Enter your E-mail and animated subscribe form.</p>
<input type="email" placeholder="email" required>
<button>SEND</button>
<div class="cross" ><i class="fa fa-times" style="color: #fff;"></i></div>
</div>
</div>
</body>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body{
margin: 0;
position: relative;
}
body.pop-up{
background-color: #222;
}
*{
font-family: calibri, sans-serif;
font-weight: normal;
color: #333333;
}
h1{
font-size: 40px;
margin: 10px 0px;
}
p{
margin-bottom: 40px;
}
#pop-up{
position: relative;
top: 100px;
width: 500px;
margin: 0 auto;
text-align: center;
}
#pop-up .container{
background-color: #f0e4d4;
padding:30px;
position: absolute;
top:50px;
width:100%;
box-sizing:border-box;
}
#pop-up input{
padding: 10px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: