Files
utd-singularity/public/index.html
T
Glitch (hello-express) e4e99884ee 🍡💶 Checkpoint
./public/style.css:617503/3179
./public/illustration.svg:617503/38701
./public/index.html:617503/252
2020-10-23 19:46:58 +00:00

43 lines
1.3 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">
<h1 class="title">Hey node!</h1>
<p>
You can edit this view in public/index.html
</p>
</div>
<img src="/illustration.svg" class="illustration" />
</div>
<div class="remix">
<div>
<button class="btn--remix">
<img
src="https://cdn.glitch.com/a9975ea6-8949-4bab-addb-8a95021dc2da%2FLogo_Color.svg?v=1602781328576"
/>
Remix on Glitch
</button>
</div>
</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>