Content deleted Content added
Tags: Mobile edit Mobile app edit Android app edit |
fix syntaxhighlight errors |
||
Line 32:
Typically a web page using DHTML is set up in the following way:
<syntaxhighlight lang="
<!DOCTYPE html>
<html lang="en">
Line 60:
The following code illustrates an often-used function. An additional part of a web page will only be displayed if the user requests it.
<syntaxhighlight lang="
<!DOCTYPE html>
<html>
Line 119:
Inline styles are CSS style assignments that have been applied to an element using the style attribute. You can examine and set these styles by retrieving the style object for an individual element. For example, to highlight the text in a heading when the user moves the mouse pointer over it, you can use the style object to enlarge the font and change its color, as shown in the following simple example.
<syntaxhighlight lang="
<!DOCTYPE html>
<html lang="en">
|