```<pdf> <head> <style> #w...
# advancedpdf
m
Copy code
<pdf>
	<head>
		<style>
			#watermarkbody { font-size:80; font:Helvetica; color:#F0F0F0; }
		</style>
		
		<macrolist>
			<macro id="watermark">
				<p id="watermarkbody" rotate="-30" valign="middle" align="center">
					Confidential
				</p>
			</macro>
		</macrolist>
	</head>
 
	<body background-macro="watermark">
		Document contents here
	</body>
 </pdf>
👍 1