-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvg2.shtml
executable file
·82 lines (72 loc) · 1.92 KB
/
svg2.shtml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="notie no-js"> <!--<![endif]-->
<head>
<!--#include virtual="title.html" -->
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="modernizr.js"></script>
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript">
if (Modernizr.svg) {
/* properties for browsers that
support audio */
}else{
/* properties for browsers that
does not support audio */
}
</script>
<style>
/*.no-svg #svg-image {
display: none;
}
.svg #no-svg-image {
display: none;
}*/
</style>
</head>
<body>
<!-- Defining Header -->
<header>
<!--#include virtual="header.html" -->
</header>
<!-- Defining Navigation -->
<nav>
<!--#include virtual="menu.html" -->
</nav>
<div id="content">
<div id="mcontent">
<!-- Defining Header for content section -->
<header>
<h2>SVG Example</h2>
</header>
<!-- Defining Content Section -->
<section>
<!-- Defining content section article -->
<div id="svg-image">
</div>
<div id="no-svg-image">No SVG support</div>
<article class="bpage">
<div>
</div>
<div class="image">
</div>
</article>
</section></div>
<!-- Defining Sidebar / Aside -->
<aside>
<section>
<ul>
<li><a href="index.shtml">Home</a></li>
</ul>
</section>
</aside>
</div>
<!-- Defining Footer -->
<footer>
<!--#include virtual="footer.html" -->
</footer>
</body>
</html>