Chapter 8 - Code Snippets Sample HTML code p. 247 The following is a sample of HTML code that demonstrates the tags in Table 8-1. Sample HTML Tags

Samples of Basic HTML Tags

The font for plain body text depends on the browser settings. This is bold. This is italic. This is not. This is both.

New paragraph before this sentence.
Line break before this sentence.

There are ten spaces between this             and this.
Extra spaces without tags are ignored.

The same applies to line breaks in the code.

JDeveloper is a product of Oracle Corporation.


Unordered List ---------------------------------------------------------------------------- JavaScript in HTML p. 248-249 ... the following sample will help you become familiar with what JavaScript looks like. You will then be able to recognize it in the code that JDeveloper creates.
First Name:

------------------------------------------------------------------------------- Building a Simple JSP Application: Phase III - Add Other JSP Directives p. 270 Step 1: ... Type the following into the blank space: <%-- This is a JSP comment --%> <%// This is a Java comment %> -------------------------------------------------------------------- Building a JSP Data Application Manually: Phase I - Set up Links Between Pages p. 291 Step 6. A second method for linking to another page is to provide a hypertext link. Add the following code just before the body closing tag () in HelloWWW.jsp: Browse Departments --------------------------------------------------------------------- Phase II - Create a Data Browse Page with a New Web Bean p. 297 Step 2. Replace the aTable.addHeader() line with the following lines: if ((String)rs.getProperty( attrs[nIndex].getColumnName() + "_LABEL") == null ) aTable.addHeader(attrs[nIndex].getName()); else aTable.addHeader((String)rs.getProperty( attrs[nIndex].getColumnName() + "_LABEL"));