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
- HTML documents begin with
and end with - Headings are defined with
to - Paragraphs are defined in
tag...
- Links are defined in
tag
Example:
Paul's Server
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 tag to
write or reference scripts.
Example:
HTML Online Editor & Compiler - Paul's Server
Output
Powered by Paul's Server
Ready
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>