23 lines
797 B
HTML
23 lines
797 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Toastty</title>
|
|
<!-- The style.css file allows you to change the look of your web pages.
|
|
If you include the next line in all your web pages, they will all share the same look.
|
|
This makes it easier to make new pages for your site. -->
|
|
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
|
|
</head>
|
|
<body>
|
|
<h1>My Website</h1>
|
|
|
|
<p>I recently had an issue with one of my home servers and made a write up of what happened: <a href="https://toastty.neocities.org/ServerIssueManual">Link</a>.</p>
|
|
|
|
|
|
|
|
<p>Here's how you can make <strong>bold</strong> and <em>italic</em> text.</p>
|
|
|
|
</body>
|
|
</html>
|