What is HTML?

HTML, abbreviation for "Hyper-Text Markup Langage", is the semantic structure markup language for most websites.


                    <!DOCTYPE html>
                    <html lang="en">
                    <head>
                        <title>Page Title</title>
                    </head>
                    <body>
                    
                    <h1>My First Heading</h1>
                    <p>My first paragraph.</p>
                    
                    </body>
                    </html>
                    
This website was made out of the most simplest method, using only HTML and CSS.

What is CSS?

CSS, abbreviation for Cascading Style Sheets, is the styling language that styles (colors, fonts, background color, etc) for the HTML page.


                body {
                    background-color: lightblue;
                  }
                  
                  h1 {
                    color: white;
                    text-align: center;
                  }
                  
                  p {
                    font-family: verdana;
                    font-size: 20px;
                  }
                

What is JS?

JS, abbreviation for JavaScript, is the scripting language that provides websites functionality and interactivity.


                function greetUser(name) {
                    alert("Hello, " + name + "!");
                  }
                  
                  greetUser("Alice");    
                  
                

//When working with HTML, the JS code requires specific code format

document.createElement("");