Files
fedizinefest/index.html
Glitch (wiry-plaid-valley) 7e0bc9c7c9 🍰🗻 Checkpoint
./index.html:617503/291
./style.css:617503/772
2020-11-05 18:22:01 +00:00

35 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hello World!</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- import the webpage's javascript file -->
<script src="/script.js" defer></script>
</head>
<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>
</body>
</html>