43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--
|
|
This is an HTML comment
|
|
You can write text in a comment and the content won't be visible in the page
|
|
-->
|
|
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="https://glitch.com/favicon.ico" />
|
|
|
|
<!--
|
|
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
|
|
-->
|
|
<title>FediZineFest 2025</title>
|
|
|
|
<!-- The website stylesheet -->
|
|
<link rel="stylesheet" href="/style.css" />
|
|
|
|
<!-- The website JavaScript file -->
|
|
<script src="/script.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<!--
|
|
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
|
|
-->
|
|
<div class="wrapper">
|
|
<div class="content" role="main">
|
|
<h1 class="title">FediZineFest 2025</h1>
|
|
</div>
|
|
</div>
|
|
<!-- The footer holds our remix button — you can keep or delete it ✂ -->
|
|
<footer class="footer">
|
|
<div class="links"></div>
|
|
</footer>
|
|
</body>
|
|
</html>
|