insert text using css in HTML Dom
<!DOCTYPE html>
<html>
<head>
<style>
p{
visibility: hidden;
}
p::before {
visibility: visible;
content: " - Remember this you are the great man";
}
</style>
</head>
<body>
<p>My name is Donald</p>
<p>I live in Ducksburg</p>
</body>
</html>
Comments
Post a Comment