35 lines
1.0 KiB
HTML
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>
|