Skip to content

Commit

Permalink
refactored the code, moved styles inline
Browse files Browse the repository at this point in the history
  • Loading branch information
kdidenko committed May 28, 2020
1 parent a9f1615 commit f07e604
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions svgedit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@

<head>
<meta charset="utf-8">
<title>title</title>
<title>SVG Editor</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link type="text/css" rel="stylesheet" src="./styles/editor.css">
<style>
html, dody, iframe#svgeditor {
padding: 0px;
margin: 0px;
display: block;
width: 100%;
height: 100%;
}
</style>
</head>
<!-- section `document.body` begins -->

<body>
<header>
<h1>SVG Editor</h1>
</header>
<main>
<iframe src="https://svg-edit.github.io/svgedit/editor/svg-editor.html?extension=">
</iframe>
</main>
<iframe id="svgeditor" src="https://svg-edit.github.io/svgedit/editor/svg-editor.html?extension="></iframe>
</body>
</html>

1 comment on commit f07e604

@kdidenko
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

☑ #TODO:

Please sign in to comment.