Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Computer Code Elements

HTML encompasses various elements for specifying user input and computer code.

Example

<code>
x = 5;
y = 6;
z = x + y;
</code>

HTML <kbd> For Keyboard Input

The HTML <kbd> element defines keyboard input, displaying its content in the browser’s default monospace font.

Example

Designate certain text as keyboard input within a document:

<p>Save the document by pressing <kbd>Ctrl + S</kbd></p>

Result:

Save the document by pressing Ctrl + S

HTML <samp> For Program Output

The HTML <samp> element specifies sample output from a computer program, with its content rendered in the browser’s default monospace font.

Example

Specify certain text as sample output from a computer program within a document:

<p>Message from my computer:</p>
<p><samp>File not found.<br>Press F1 to continue</samp></p>

Result:

Message from my computer:

File not found.
Press F1 to continue

HTML <code> For Computer Code

The HTML <code> element denotes a segment of computer code, with its content rendered in the browser’s default monospace font.

Example

Indicate certain text as computer code within a document

<code>
x = 5;
y = 6;
z = x + y;
</code>

Result:

x = 5; y = 6; z = x + y;

Note that the <code> element does not retain additional whitespace and line breaks.

To address this, enclose the <code> element within a <pre> element:

Example

<pre>
<code>
x = 5;
y = 6;
z = x + y;
</code>
</pre>

Result:

x = 5;
y = 6;
z = x + y;

HTML <var> For Variables

The <var> HTML element is utilized for defining variables in programming or mathematical expressions. The content within is commonly displayed in italics.

Example

Designate certain text as variables within a document.

<p>The area of a triangle is: 1/2 x <var>b</var> x <var>h</var>, where <var>b</var> is the base, and <var>h</var> is the vertical height.</p>

Result:

The formula for calculating the area of a triangle is: half multiplied by the base (b) multiplied by the vertical height (h).

Summary of the Chapter

  • The <kbd> element defines keyboard input
  • The <samp> element defines sample output from a computer program
  • The <code> element defines a piece of computer code
  • The <var> element defines a variable in programming or in a mathematical expression
  • The <pre> element defines preformatted text rephrase