Files
fedizinefest/index.html
Glitch (hello-webpage) ae484f59d7 🛩👢 Checkpoint
./style.css:617503/2419
./index.html:617503/291
2020-10-15 16:59:57 +00:00

33 lines
973 B
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!</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">
<h1>Hello world!</h1>
</div>
<img src="/illustration.svg" class="illustration" />
<button>
Remix on Glitch
</button>
</div>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js" defer></script>
</body>
</html>