Skip to Content
HTML Online Editor & Compiler - Paul's Server
Output

About HTML

HTML (Hyper Text Markup Language) is the standard markup language for web pages, created by Berners-Lee in 1991. Almost every web page on the internet uses HTML.

Syntax Help

Fundamentals

  • Any HTML document must start with <!DOCTYPE html>
  • HTML documents begin with <html> and end with </html>
  • Headings are defined with <h1> to <h6>
  • Paragraphs are defined in <p>...</p> tag
  • Links are defined in <a> tag

Example:

<a href="https://paulsserver.com">Paul's Server</a>

CSS

CSS (Cascading Style Sheets) describes how HTML elements look on the web page: color, font-style, font-size, background, etc.

Example:

body {
  padding: 25px;
}
.title {
  color: #10b981;
  font-family: Arial;
}

HTML-JavaScript

JavaScript makes HTML pages interactive. Use <script> tag to write or reference scripts.

Example:

<script src="script.js"></script>