Files
fedizinefest/index.html
T

33 lines
973 B
HTML
Raw Normal View History

2017-10-10 12:57:38 +00:00
<!DOCTYPE html>
2018-03-19 20:01:30 +00:00
<html lang="en">
2017-10-10 12:57:38 +00:00
<head>
2020-10-14 18:31:47 +00:00
<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!</title>
2020-10-14 18:31:47 +00:00
2018-03-19 20:01:30 +00:00
<!-- import the webpage's stylesheet -->
2020-10-14 18:31:47 +00:00
<link rel="stylesheet" href="/style.css" />
2018-03-19 20:01:30 +00:00
<!-- import the webpage's javascript file -->
2017-10-10 12:57:38 +00:00
<script src="/script.js" defer></script>
2020-10-14 18:31:47 +00:00
</head>
2017-10-10 12:57:38 +00:00
<body>
2020-10-14 18:31:47 +00:00
<div class="wrapper">
<div class="content">
<h1>Hello world!</h1>
</div>
2020-10-15 16:59:57 +00:00
<img src="/illustration.svg" class="illustration" />
<button>
Remix on Glitch
</button>
2020-10-14 18:31:47 +00:00
</div>
2018-03-14 21:57:55 +00:00
2018-03-19 20:11:32 +00:00
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
2018-03-14 22:08:44 +00:00
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
2020-05-11 22:27:53 +00:00
<script src="https://button.glitch.me/button.js" defer></script>
2017-10-10 12:57:38 +00:00
</body>
</html>