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>
|
2023-02-28 11:01:23 +00:00
|
|
|
<!--
|
|
|
|
|
This is an HTML comment
|
|
|
|
|
You can write text in a comment and the content won't be visible in the page
|
2021-05-26 21:53:06 +00:00
|
|
|
-->
|
|
|
|
|
|
2020-10-14 18:31:47 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2021-03-27 18:32:23 +00:00
|
|
|
<link rel="icon" href="https://glitch.com/favicon.ico" />
|
2020-05-11 22:27:53 +00:00
|
|
|
|
2023-02-28 11:01:23 +00:00
|
|
|
<!--
|
|
|
|
|
This is the page head - it contains info the browser uses
|
|
|
|
|
Like the title, which appears on the browser tab but not inside the page
|
|
|
|
|
Further down you'll see the content that displays in the page
|
2021-05-26 21:53:06 +00:00
|
|
|
-->
|
2024-12-11 21:23:03 +00:00
|
|
|
<title>FediZineFest 2025</title>
|
2020-10-14 18:31:47 +00:00
|
|
|
|
2023-02-28 11:01:23 +00:00
|
|
|
<!-- The website stylesheet -->
|
2021-04-11 21:52:23 +00:00
|
|
|
<link rel="stylesheet" href="/style.css" />
|
2020-10-14 18:31:47 +00:00
|
|
|
|
2023-02-28 11:01:23 +00:00
|
|
|
<!-- The website JavaScript file -->
|
2021-04-11 21:52:23 +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>
|
2021-05-26 21:53:06 +00:00
|
|
|
<!--
|
2023-02-28 11:01:23 +00:00
|
|
|
The body includes the content you see in the page
|
|
|
|
|
Each element is defined using tags, like this <div></div>
|
|
|
|
|
The attributes like class="wrapper" let us style elements in the CSS
|
2021-05-26 21:53:06 +00:00
|
|
|
-->
|
2020-10-14 18:31:47 +00:00
|
|
|
<div class="wrapper">
|
2021-04-12 23:18:36 +00:00
|
|
|
<div class="content" role="main">
|
2024-12-11 21:23:03 +00:00
|
|
|
<h1 class="title">FediZineFest 2025</h1>
|
2020-11-05 18:10:17 +00:00
|
|
|
</div>
|
2021-04-12 21:32:32 +00:00
|
|
|
</div>
|
2023-02-28 11:01:23 +00:00
|
|
|
<!-- The footer holds our remix button — you can keep or delete it ✂ -->
|
2021-04-12 21:32:32 +00:00
|
|
|
<footer class="footer">
|
|
|
|
|
<div class="links"></div>
|
|
|
|
|
</footer>
|
2017-10-10 12:57:38 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|