Tutorials

HTML

Hypertext Markup Language

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>

CSS

Cascading Style Sheets

CSS Code Box Example

CSS Example:

body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
}

JavaScript

JavaScript allows you to implement complex features on web pages

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>



Python

Python often used to build websites and software, automate tasks, and conduct data analysis

Python Code Box Example

Python Example:

if 5 > 2:
    print("Five is greater than two!")










SQL

Structured Query Language

SQL Code Box Example

SQL Example:

SELECT * FROM Customers
WHERE Country='Mexico';










Scroll to Top