!--a11y-->
Embedding HTMLBusiness in Standard HTML 
To embed HTMLBusiness expressions in standard HTML, you use either of the following delimiters:
<server> … </server>
` … `

The following code includes the
<h1> Order Status </h1>
<p> Customer Number: <server> vbcom-kunde </server>
...
The following code includes the
vbcom-kunde screen field in the HTML page, using the equivalent back quotes:<h1> Order Status </h1>
<p> Customer Number: ` vbcom-kunde`
...
Embedding HTMLBusiness Tags in Standard HTML Tags
Since HTML does not allow tag nesting, you cannot embed HTMLBusiness tags within standard HTML tags.

The following code is not possible:
<a href="<server> screenURL </server>"> Link </a>
To handle this, HTMLBusiness provides the back quote. Unlike the
<server> … </server> tag, you can use back quotes inside HTML tags.
The hyperlink in the previous example could be written as:
<a href="‘screenURL‘"> Link </a>
Leaving Back Quotes Uninterpreted
If you want to leave back quotes in your HTML page uninterpreted, use the code
` instead.
In the following code, the
<p> This is an HTMLBusiness expression: ` vbcom-kunde` </p>
Therefore, the Web browser output is:
This is an HTML Business expression: ‘vbcom-kunde‘
