javascript after css code example
Example: css after in javascript
<!DOCTYPE html>
<html>
<head>
<style>
p::after {
content: " - SAMS TEAM";
}
</style>
</head>
<body>
<p>WE LIVE IN INDIA</p>
<p>WEB</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
p::after {
content: " - SAMS TEAM";
}
</style>
</head>
<body>
<p>WE LIVE IN INDIA</p>
<p>WEB</p>
</body>
</html>