Files
fedizinefest/index.html

35 lines
1.0 KiB
HTML
Raw Normal View History

2017-10-10 12:57:38 +00:00
<!DOCTYPE html>
<html lang="en">
2017-10-10 12:57:38 +00:00
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2020-05-11 22:27:53 +00:00
<title>Hello World!</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- import the webpage's javascript file -->
2017-10-10 12:57:38 +00:00
<script src="/script.js" defer></script>
</head>
2017-10-10 12:57:38 +00:00
<body>
<div class="wrapper">
<div class="content">
<span class="title">Hello World!</span>
<img
src="illustration.svg"
class="illustration"
alt="Editor illustration"
/>
</div>
</div>
<nav class="navigation">
<a href="https://glitch.com/edit/#!/remix/glitch-hello-website" class="btn--remix">
<img src="https://cdn.glitch.com/a9975ea6-8949-4bab-addb-8a95021dc2da%2FLogo_Color.svg?v=1602781328576" />
Remix on Glitch
</a>
</nav>
2017-10-10 12:57:38 +00:00
</body>
</html>