0

hello i am trying to implement something like this in console.

enter image description here

when user opens browser console message like this must show up

how can it be done?

(screenshot from Facebook.com)

ilia
  • 339
  • 8
  • 23

1 Answers1

2

You can style console.log() outputs for example in Chrome with CSS

Here is an example:

console.log('%c this is styled with CSS', 'color:red; font-size: 20px; font-weight: bold');
d-h-e
  • 2,478
  • 1
  • 10
  • 18