SyntaxHighlighter
version 2.1.364 (October 15 2009)
If you like this script, please donate to keep development active!
JavaScript code syntax highlighter.
Copyright 2004-2009 Alex Gorbatchev.
-ExecutionPolicy Bypass will ignore the current system policy so your script can run without issues.PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& 'C:\Users\SO\Desktop\YourScript.ps1'"
# Launch script
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%mypath:~0,-1%\data\install.ps1'"
# Same thing but force the script to run as admin
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -NoExit -File ""%mypath:~0,-1%\data\install.ps1""' -Verb RunAs}"
<!DOCTYPE html> <html> <head> <title>details tag</title> <style> summary { font-size:40px; color:#090; font-weight:bold; } </style> </head> <body> <details> <summary>GeeksforGeeks</summary> <p>A computer science portal for geeks</p> <div>It is a computer science portal where you can learn programming.</div> </details> </body> </html> <!DOCTYPE html> <html> <head> <title>dialog tag</title> <style> dialog { color:green; font-size:30px; font-weight:bold; font-style:italic; } body { text-align:center; } </style> </head> <body> <h1><dialog> tag</h1> <dialog open>Welcome to GeeksforGeeks</dialog> </body> </html> <!DOCTYPE html> <html> <head> <title>meter tag</title> </head> <body> <h1>GeeksforGeeks</h1> <p>Meter Tag:</p> Sachin's score: <meter value="5" min="0" max="10">5 out of 10</meter> <br>Laxma sxore: <meter value="0.5">50% from 100% </meter> </body> </html>