Articles in this series
The Ultimate Python CheatSheet Basics Basic syntax from the python programming language Showing Output To User the print function is used to display or print output print("Content that you wanna print on screen") Taking Input From User the input fun...
HTML Cheatsheet Structure This is the basic template or barebone structure of HTML. Boilerplate <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> </body> </html> Headings There are six headings av...
JavaScript Basics Set of JavaScript basic syntax to add, execute and write basic programming paradigms in Javascript On Page Script Adding internal JavaScript to HTML <script type="text/javascript"> //JS code goes here </script> External JS File Add...