Skip to content

Commit 006ca5e

Browse files
committed
finished xhtml chapter elements
1 parent 6e5dd98 commit 006ca5e

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

home.html

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ <h2>XHTML</h2>
6262
<p>
6363

6464
<a href="xhtml_intro.html">Introduction</a><br />
65+
<a href="xhtml_elements.html">Elements</a><br />
6566

6667
</p>
6768

xhtml_elements.html

+20
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)