Courses
Apply as instructor
Sign Up
HTML

HTML, short for HyperText Markup Language, is a markup language used for creating web pages and other types of digital content. It is the standard markup language for web pages and is used in conjunction with other technologies like Cascading Style Sheets (CSS) and JavaScript to create interactive and dynamic web pages. HTML provides a framework for organizing and structuring content on a web page, including text, images, videos, and other multimedia elements.
Examples: Here are some basic examples of HTML code to give you an idea of how it works , copy and paste it in index.html then see the result in the live server:
Creating a basic web page structure:

<!DOCTYPE html> <html> <head> <title>My Web Page</title> </head> <body> <h1> Welcome to my web page! </h1> <p> This is my first web page. </p> </body> </html> let's add some style to it , copy code and paste it style.css
body{ margin: 0; background-color: green; border: 5px solid black; } h1{ color: red; font-size: 16px; }

index.html
style.css
script.js
taskes
editor
server