Published in: HTML
XML <?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> DTD <?xml version="1.0" standalone="no"?> <!DOCTYPE hallo SYSTEM "hallo.dtd"> <hallo>Hallo Welt!</hallo> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE example [ <!ENTITY copy "©"> <!ENTITY copyright-notice "Copyright © 2006, XYZ Enterprises"> ]> <example> ©right-notice; </example> XSLT <?xml version="1.0" ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="xml" indent="yes"/> <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="hello.xsl"?> <hello-world> <greeter>An XSLT Programmer</greeter> <greeting>Hello, World!</greeting></hello-world> GWT <module> <!-- Inherit the core Web Toolkit stuff. --> <inherits name='com.google.gwt.user.User'/> <inherits name='com.qrist0ph.gwtWidgets.WidgetLibrary'/> <!-- Specify the app entry point class. --> <entry-point class='org.qrist0ph.client.HelloWorld'/> <stylesheet src="HelloWorld.css" /> </module> public class VerticalTabPanel extends Composite implements HistoryListener{ initWidget(panel); HTML <head> <style type="text/css"> body {background-color: white} table.sample td { border-width: 1px 1px 1px 1px; } </style> <link rel="stylesheet" type="text/css" href="style.css" /> <script type="text/javascript" src="ticker.js" /> <script type="text/javascript"> function myfunction() { document.getElementById("mydiv").innerHTML = "Button clicked" } </script> </head>
You need to login to post a comment.
