We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e5dd98 commit 006ca5eCopy full SHA for 006ca5e
home.html
@@ -62,6 +62,7 @@ <h2>XHTML</h2>
62
<p>
63
64
<a href="xhtml_intro.html">Introduction</a><br />
65
+ <a href="xhtml_elements.html">Elements</a><br />
66
67
</p>
68
xhtml_elements.html
@@ -0,0 +1,20 @@
1
+<!DOCTYPE html>
2
+<html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>XHTML Elements</title>
5
+ </head>
6
+
7
+ <body>
8
+ <h1>XHTML Elements</h1>
9
10
+ <h4>Things do not always have to be properly nested</h4>
11
12
+ <b><i>This text is bold and italic</b></i>
13
+ <b><i>This text is bold and italic</i></b>
14
15
+ <h4>XHTML elements must always be closed even empty elements</h4>
16
17
+ <h4>XHTML emements must always be in lower case</h4>
18
19
+ </body>
20
+</html>
0 commit comments