-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample2.html
More file actions
31 lines (31 loc) · 788 Bytes
/
example2.html
File metadata and controls
31 lines (31 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<HEAD>
<TITLE>Anonymous text interrupted by a block</TITLE>
<style>
p{
display:inline;
}
span{
display:block;
}
p{
border:1px solid #f00;
}
div{
display:inline;
border:1px solid #0f0;
}
</style>
</HEAD>
<BODY>
<div>
before ancnetor span
<P>
This is anonymous text before the SPAN.
<SPAN>This is the content of SPAN.</SPAN>
This is anonymous text after the SPAN.
</P>
after ancentor span
</div>
</BODY>
</html>