Advertisements
In advertising sections of a newspaper/magazine issue, the value jAnnouncements
is placed in the @type
attribute of a <div>
element of the first level. The individual advertisement is again enclosed by a <div>
element of lower level, which gets the attribute value pair @type="jAn"
(for "announcement").
Category | @type Value |
Hierarchy Level (recommended) |
---|---|---|
advertising section | jAnnouncements |
1 |
advertisement | jAn |
2 | 3 | ... |
<div type="jAnnouncements"> <div type="jAn">[advertisement]</div> <div type="jAn">[further advertisement]</div> </div>
If individual advertisements are again grouped within the advertisement section, several <div type="jAnnouncements">
elements can be nested into each other.
<div type="jAnnouncements"> <div type="jAnnouncements"> <!-- first group of advertisements --> <div type="jAn">[advertisement]</div> <div type="jAn">[further advertisement]</div> </div> <div type="jAnnouncements"> <!-- second group of advertisements --> <div type="jAn">[advertisement]</div> <div type="jAn">[further advertisement]</div> </div> </div>
Attention: The DTABf-compliant
@type
value "advertisement"
for <div>
elements is not permitted in newspapers/journals. Use "jAn"
instead.