HTML Lessom 6 part 2
true
A non-breaking space is a space that will not break into a new line. true or false
HTML Symbols
Symbols that are not present on your keyboard can also be added by using entities.
text input.
<input type="text"> defines a single-line input field for ______
&entity_name; OR &#entity_number;
A character entity looks like this: &entity_ ____; OR &#entity_ _____; To display a less than sign (<) we must write: < or <
A commonly used entity in HTML is the non-breaking space write the syntax
false
Advantage of using an entity name: An entity name is not easy to remember. true or false
text fields, check boxes, radio buttons, submit buttons, and more
An HTML form contains form elements. Form elements are different types of input elements, like: ___ , ______ ,_____ , ________.
character entity
Another common use of the non-breaking space is to prevent browsers from truncating spaces in HTML pages. If you write 10 spaces in your text, the browser will remove 9 of them. To add real spaces to your text, you can use the __________.
true
Disadvantage of using an entity name: Browsers may not support all entity names, but the support for entity numbers is good. true or false
false
Entity names are not case sensitive. true or false
HTML Symbol Entities
Many mathematical, technical, and currency symbols, are not present on a normal keyboard. To add such symbols to an HTML page, you can use an HTML entity name. If no entity name exists, you can use an entity number, a decimal, or hexadecimal reference.
HTML Entities
Some characters are reserved in HTML. Reserved characters in HTML must be replaced with character entities. If you use the less than (<) or greater than (>) signs in your text, the browser might mix them with tags.
true
The form itself is not visible. Also note that the default width of an input field is 20 characters. true or false
HTML Form
it is used to collect user input. The user input can then be sent to a server for processing.
Character entities
it is used to display reserved characters in HTML.
<input> Element
this element is the most important form element. It is displayed in several ways, depending on the type attribute.