HTML Computer Code Elements PDF
HTML Computer Code Elements PDF
w3schools.com
Computer Code
<code>
x = 5;<br>
y = 6;<br>
z = x + y;
</code>
Try it Yourself »
Example
<p>Save the document by pressing <kbd>Ctrl + S</kbd></p>
Result:
file:///C:/Users/Peregrin0/Documents/cursos programacion/www.w3schools.com/html/html_computercode_elements.html 1/8
21/4/2020 HTML Computer Code Elements
Try it Yourself »
Example
<p>If you input wrong value, the program will return <samp>Error!</samp></p>
Result:
Try it Yourself »
Example
<code>
x = 5;
y = 6;
z = x + y;
</code>
file:///C:/Users/Peregrin0/Documents/cursos programacion/www.w3schools.com/html/html_computercode_elements.html 2/8
21/4/2020 HTML Computer Code Elements
Result:
x = 5; y = 6; z = x + y;
Try it Yourself »
Notice that the <code> element does not preserve extra whitespace and line-breaks.
To fix this, you can put the <code> element inside a <pre> element:
Example
<pre>
<code>
x = 5;
y = 6;
z = x + y;
</code>
</pre>
Result:
x = 5;
y = 6;
z = x + y;
Try it Yourself »
Example
file:///C:/Users/Peregrin0/Documents/cursos programacion/www.w3schools.com/html/html_computercode_elements.html 3/8
21/4/2020 HTML Computer Code Elements
Result:
Try it Yourself »
HTML Exercises
Exercise:
Define the text "var person;" as programming code.
Submit Answer »
For a complete list of all available HTML tags, visit our HTML Tag Reference.
❮ Previous Next ❯
COLOR PICKER
HOW TO
Tabs
Dropdowns
Accordions
Side Navigation
Top Navigation
Modal Boxes
Progress Bars
Parallax
Login Form
HTML Includes
Google Maps
Range Sliders
Tooltips
Slideshow
Filter List
Sort List
SHARE
CERTIFICATES
HTML
CSS
JavaScript
SQL
Python
PHP
jQuery
Bootstrap
XML
Read More »
REPORT ERROR
PRINT PAGE
FORUM
ABOUT
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
jQuery Tutorial
Java Tutorial
C++ Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
jQuery Reference
Java Reference
Angular Reference
Top Examples
HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
jQuery Examples
Java Examples
XML Examples
Web Certificates
HTML Certificate
CSS Certificate
JavaScript Certificate
SQL Certificate
Python Certificate
jQuery Certificate
PHP Certificate
Bootstrap Certificate
XML Certificate
Get Certified »
W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve
reading and basic understanding. Tutorials, references, and examples are constantly reviewed to avoid
errors, but we cannot warrant full correctness of all content. While using this site, you agree to have
read and accepted our terms of use, cookie and privacy policy. Copyright 1999-2020 by Refsnes Data.
All Rights Reserved.
Powered by W3.CSS.