Write HTML, CSS, and JavaScript code with instant preview
Write, Run & Share HTML code online using our HTML online Code editor for free. It's a robust online code editor for HTML5, CSS3, and JavaScript, providing a simple and fast way to start coding.
HTML (Hyper Text Markup Language) is the standard markup language for web pages, created by Tim Berners-Lee in 1991. Almost every web page uses HTML to structure content on the internet.
<!DOCTYPE html><html> and end with </html><h1> to <h6><p> tags<a> tags<img> tags<button> tags<ul> or <ol> with <li> items<a href="https://example.com">Click Here</a>CSS describes how HTML elements should look, including color, font style, size, and background color.
body {
padding: 25px;
background-color: #f5f5f5;
}
.title {
color: #228B22;
font-family: 'Arial', sans-serif;
font-size: 24px;
}
<table> tag<tr><th><td><caption>JavaScript is used to make web pages interactive and dynamic.
<script> tag is used to write JavaScript code