⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
summernote
/
examples
/
View File Name :
with-google-font.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>With Google Fonts</title> <!-- include jquery --> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script> <!-- include libraries BS --> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.css" /> <script src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.5/umd/popper.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.js"></script> <!-- include summernote --> <script type="text/javascript" src="/summernote-bs4.js"></script> <!-- include Google Fonts --> <link href="https://fonts.googleapis.com/css?family=Coming+Soon" rel="stylesheet" /> <link rel="stylesheet" href="example.css"> <script type="text/javascript"> $(function() { $('.summernote').summernote({ height: 200, fontNames : ['Coming Soon'], fontNamesIgnoreCheck: ['Coming Soon'] }); }); </script> </head> <body> <div class="container"> <h1>Summernote with Google Fonts</h1> <textarea name="text" class="summernote"><p style="font-family: 'Coming Soon'">Coming Soon!</p></textarea> </div> </body> </html>