Skip to content

Commit

Permalink
Use lowercase HTML tags and attributes. Add quotes around attributes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Jul 4, 2020
1 parent 96b5ab3 commit c4dfa36
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 37 deletions.
18 changes: 9 additions & 9 deletions webapps/examples/jsp/error/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
<h1> This example uses <b>errorpage</b> directive </h1>
<br>
<h3> Select my favourite car.</h3>
<form method=get action=err.jsp>
<form method="get" action="err.jsp">
<!-- <br> Make a guess: -->
<SELECT NAME="name" SIZE=5>
<OPTION VALUE="integra"> Acura Integra <BR>
<OPTION VALUE="bmw328i"> BMW 328I <BR>
<OPTION VALUE="z3"> BMW Z3 <BR>
<OPTION VALUE="infiniti"> InfinitiQ3 <BR>
<OPTION VALUE="audi"> Audi A8 <BR>
</SELECT>
<br> <INPUT TYPE=submit name=submit Value="Submit">
<select name="name" size="5">
<option value="integra"> Acura Integra <br>
<option value="bmw328i"> BMW 328I <br>
<option value="z3"> BMW Z3 <br>
<option value="infiniti"> InfinitiQ3 <br>
<option value="audi"> Audi A8 <br>
</select>
<br> <input type="submit" name="submit" value="Submit">
</form>

</body>
Expand Down
56 changes: 28 additions & 28 deletions webapps/examples/jsp/sessions/DummyCart.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<HTML>
<html>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -16,41 +16,41 @@
limitations under the License.
-->

<HEAD>
<head>
<title>
sessions.DummyCart Bean Properties
</title>
<BODY BGCOLOR="white">
<H2>
<body bgcolor="white">
<h2>
sessions.DummyCart Bean Properties
</H2>
<HR>
<DL>
<DT>public class <B>DummyCart</B><DT>extends Object</DL>
</h2>
<hr>
<dl>
<dt>public class <b>DummyCart</b><dt>extends Object</dl>

<P>
<HR>
<p>
<hr>

<P>
<p>

<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0">
<TR BGCOLOR="#EEEEFF">
<TD COLSPAN=3><FONT SIZE="+2">
<B>Properties Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white">
<table border="1" width="100%" cellpadding="3" cellspacing="0">
<tr bgcolor="#EEEEFF">
<td colspan=3><font size="+2">
<b>Properties Summary</b></font></td>
</tr>
<tr bgcolor="white">
<td align="right" valign="top" width="1%">
<FONT SIZE="-1">
<font size="-1">
String
</FONT></TD>
<TD><B>DummyCart:items</B>
<BR>
</TD>
</font></td>
<td><b>DummyCart:items</b>
<br>
</td>
<td width="1%">
<FONT SIZE="-1">
<font size="-1">
Multi
</FONT></TD>
</TABLE>
<HR>
</BODY>
</HTML>
</font></td>
</table>
<hr>
</body>
</html>

0 comments on commit c4dfa36

Please sign in to comment.