Tutorials HTML &CSS Learn HTML Learn CSS JavaScript Learn JavaScript Learn React Backend Learn Python Learn SQL Learn PHP Learn Java Learn Linux Learn Git Learn Go Learn C++ HTML Hypertext Markup Language Learn HTML HTML Code Box Example HTML Example: <!DOCTYPE html> <html> <head> <title>HTML Tutorial</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html> Try it Yourself CSS Cascading Style Sheets Learn CSS CSS Code Box Example CSS Example: body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; } Try it Yourself JavaScript JavaScript allows you to implement complex features on web pages Learn JavaScript JavaScript Code Box Example JavaScript Example: <button onclick="myFunction()">Click Me!</button> <script> function myFunction() { let x = document.getElementById("demo"); x.style.fontSize = "25px"; x.style.color = "red"; } </script> Try it Yourself Python Python often used to build websites and software, automate tasks, and conduct data analysis Learn Python Python Code Box Example Python Example: if 5 > 2: print("Five is greater than two!") Try it Yourself SQL Structured Query Language Learn SQL SQL Code Box Example SQL Example: SELECT * FROM Customers WHERE Country='Mexico'; Try it Yourself