JSP, HTML and SVG (Scaleable Vector Graphics) : Collaboration « JSP « Java






JSP, HTML and SVG (Scaleable Vector Graphics)

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>

<jsp:useBean id="date" class="java.util.Date" />

<html>
<head><title>SVG in a JSP</title></head>
<body>
<h2>A Scaleable Vector Graphics example</h2>

<embed src=
    "testLogo.svg" width="200" height="200" type=
    "image/svg-xml" pluginspage="http://www.adobe.com/svg/viewer/install/"
>

<br /><c:out value="${date}"/>

</body>
</html>
           
       








Related examples in the same category

1.JSP and Applet 1
2.JSP and Applet
3.JSTL: work with applet
4.JSP and Flash page
5.JSP and embedded Wmp
6.JSTL: Flash in a JSP
7.JSP and QuickTime (.mov file)
8.JSP standard actions: JSP and applet
9.JSPs and Servlets
10.JSPs and Servlets 2