In HTML is used element br for new line,
since hjust pressing Enter button not working
Second feature: several sequential whitespaced will be replace by one whitespace
In order to ger several sequential spaces is used special character nbsp
several spaces.
Free design is available using element pre:
1. text without using pre
one
two
three
2. text using pre element
one
two
three
Text formatting
Bold text Important text Italic text Emphasized text
Marked text
Smaller text Deleted text
Inserted text
Special characters
Special characters begin with symbol & and end with semicolon
between start and end is code of special character
Sample
Code for less sign is lt: <
Code for more sign is gt: >
Some Estonian letter;
ä ü ö Ä Ü Ö õ Õ
Lower and upper indexes
Einstein: E=mc2
Water: H2O
Program code
for(i=0; i < N; i++)
{
a=i+1;
b=i+7;
c=a+b;
}
Using elements DIV and SPAN
Elements DIV and SPAN are used for mark-up ONLY!
SPAN element is used for marking part of row, DIV is used for marking
bigger block of the page
Adding these elements on page does not change anything,
but can be used for applying styles
Samples:
Here is error in program code which should
corrected immediatly!!!