HTML and CSS Reference
In-Depth Information
filename displayed on tab
Figure 10-2
To Create a Form Text Field to Display a Scrolling Message
The following step creates a form and a form text field to display a scrolling message. Table 10-1 shows the
HTML code to create the form and a text field for the scrolling message.
Table 10-1 Code to Create a Form and a Text Field
Line
Code
<form id=”msgForm”>
67
<p style=”text-align:center”><input type=”text” name=”scrollingMsg”
size=”25” /></p>
68
69
</form>
Line 67 starts the form and uses the id attribute to give the form the unique name, msgForm. Line 68 starts
with a <p> tag and an inline style that centers the text field. The form input tag is a text type, which creates a text
field that can receive data. The text field is named scrollingMsg and is set to a size of 25. Line 69 is the closing
</form> tag.
 
Search WWH ::




Custom Search