hello friends....
TAKE THE FIRST STEP TO KNOWLEDGE FRIENDS BECAUSE KNOWLEDGE IS FREE.
HTML CODE
*******************
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AFTER AND BEFORE EFFECT</title>
<link rel="stylesheet" type="text/css" href="textef.css">
</head>
<body>
<div class="mainDiv">
<div class="centerDiv">
<h1>web</h1>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AFTER AND BEFORE EFFECT</title>
<link rel="stylesheet" type="text/css" href="textef.css">
</head>
<body>
<div class="mainDiv">
<div class="centerDiv">
<h1>web</h1>
</div>
</div>
</body>
</html>
---------- *** ----------
CSS CODE
***************
*{
margin: 0;
padding: 0;
}
.mainDiv{
width: 100%;
height: 100vh;
display: flex;
align-items: center;justify-content: center;
text-align: center;
}
h1{
font-size: 6rem;
color: skyblue;
text-transform: uppercase;
letter-spacing: 3px;
}
h1::before{
content: 'dnp';
color: #fff ;
display: block;
background-color:#c70039;
}
h1::after{
content: 'developer';
color: #fff;
display: block;
background-color:#c70039;
}
*{
margin: 0;
padding: 0;
}
.mainDiv{
width: 100%;
height: 100vh;
display: flex;
align-items: center;justify-content: center;
text-align: center;
}
h1{
font-size: 6rem;
color: skyblue;
text-transform: uppercase;
letter-spacing: 3px;
}
h1::before{
content: 'dnp';
color: #fff ;
display: block;
background-color:#c70039;
}
h1::after{
content: 'developer';
color: #fff;
display: block;
background-color:#c70039;
}
----------***----------
OUTPUT
============
------------------------------------------------------------------------------------------------------------------------
>> IF YOU LIKE THIS BLOG, PLEASE SHARE AND SUBSCRIBE. ALSO COMMENT FOR THIS BLOG.
>> IF YOU HAVE ANY QUESTIONS PLEASE ASK IN COMMENT.
>> IF YOU WANT TO LEARN C PROGRAM WITH OUTPUT, SO VISIT THIS BLOG
https://dnpdeveloper.blogspot.com/
>> MY INSTAGRAM ID : dnp176
------------------------------------------------------------------------------------------------------------------------
>> IF YOU LIKE THIS BLOG, PLEASE SHARE AND SUBSCRIBE. ALSO COMMENT FOR THIS BLOG.
>> IF YOU HAVE ANY QUESTIONS PLEASE ASK IN COMMENT.
>> IF YOU WANT TO LEARN C PROGRAM WITH OUTPUT, SO VISIT THIS BLOG
https://dnpdeveloper.blogspot.com/
>> MY INSTAGRAM ID : dnp176
Comments
Post a Comment