2011-01-16 03:22:24 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2018-05-17 18:29:20 +00:00
|
|
|
<head>
|
2018-05-18 03:55:28 +00:00
|
|
|
<meta charset="utf-8" />
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
|
|
|
|
<link rel="icon" type="image/png" href="images/logo.png"/>
|
2018-05-18 03:55:28 +00:00
|
|
|
<link rel="stylesheet" href="svg-editor.css"/>
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
<title>Browser does not support SVG | SVG-edit</title>
|
2018-05-17 18:29:20 +00:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-family: Verdana, Helvetica, Arial;
|
|
|
|
color: #000;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#logo {
|
|
|
|
float: left;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
#caniuse {
|
|
|
|
position: absolute;
|
|
|
|
top: 7em;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-05-18 03:55:28 +00:00
|
|
|
#caniuse > iframe {
|
2018-05-17 18:29:20 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<img id="logo" src="images/logo.png" width="48" height="48" alt="SVG-edit logo" />
|
2018-05-18 03:55:28 +00:00
|
|
|
<p>Sorry, but your browser does not support SVG. Below is a list of
|
|
|
|
alternate browsers and versions that support SVG and SVG-edit
|
|
|
|
(from <a href="https://caniuse.com/#cats=SVG">caniuse.com</a>).
|
|
|
|
</p>
|
|
|
|
<p>Try the latest version of
|
|
|
|
<a href="https://www.getfirefox.com">Firefox</a>,
|
|
|
|
<a href="https://www.google.com/chrome/">Chrome</a>,
|
|
|
|
<a href="https://www.apple.com/safari/">Safari</a>,
|
|
|
|
<a href="https://www.opera.com/download">Opera</a> or
|
|
|
|
<a href="https://support.microsoft.com/en-us/help/17621/internet-explorer-downloads">Internet Explorer</a>.
|
|
|
|
</p>
|
2018-05-17 18:29:20 +00:00
|
|
|
<div id="caniuse">
|
2018-05-18 03:55:28 +00:00
|
|
|
<iframe src="https://caniuse.com/#cats=SVG"></iframe>
|
2018-05-17 18:29:20 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
2011-01-16 03:22:24 +00:00
|
|
|
</html>
|