saudade/carolyns_creations/carolyns_creations.html

66 lines
1.3 KiB
HTML
Raw Normal View History

2023-12-10 20:37:03 -08:00
<!doctype html>
<html lang="en">
2023-12-10 20:37:03 -08:00
<head>
<title>Carolyn's Creations</title>
2023-12-10 20:37:03 -08:00
<!-- saudade includes -->
<script src="/saudade.js?@root" type="module"></script>
2023-12-10 20:37:03 -08:00
<style>
2023-12-04 20:09:10 -08:00
html {
2023-12-10 20:37:03 -08:00
--color: white;
--background-color: #202020;
background-color: var(--background-color);
text-align: center;
color: var(--color);
font-family: "Comic Sans MS", serif;
font-size: 1em;
2023-12-04 20:09:10 -08:00
}
2023-07-07 16:02:16 -07:00
2023-12-04 20:09:10 -08:00
p {
2023-12-10 20:37:03 -08:00
padding-top: 10px;
padding-bottom: 10px;
2023-12-04 20:09:10 -08:00
}
2023-07-07 16:02:16 -07:00
2023-12-04 20:09:10 -08:00
a {
2023-12-10 20:37:03 -08:00
color: white;
text-decoration: none;
font-weight: bold;
2023-12-04 20:09:10 -08:00
}
2023-07-07 16:02:16 -07:00
2023-12-04 20:09:10 -08:00
a:visited {
2023-12-10 20:37:03 -08:00
color: white;
text-decoration: none;
2023-12-04 20:09:10 -08:00
}
2023-07-07 16:02:16 -07:00
2023-12-04 20:09:10 -08:00
a:active {
2023-12-10 20:37:03 -08:00
color: white;
text-decoration: none;
2023-12-04 20:09:10 -08:00
}
2023-07-07 16:02:16 -07:00
2023-12-04 20:09:10 -08:00
a:hover {
2023-12-10 20:37:03 -08:00
color: #ffff40;
text-decoration: line-through;
cursor: ne-resize;
2023-12-04 20:09:10 -08:00
}
2023-12-10 20:37:03 -08:00
</style>
</head>
<body>
<div class="big-gap-top">
<p>
Welcome to Carolyn's Creations!<br />
<a href="/frames/">Enter frames</a> or
<a href="/noframes/">No Frames</a>
</p>
<img
src="cc-welcome.gif"
alt="Image showing several exotic Petz, Oddballz, and a Babyz."
/>
<p>Petz, Babyz, Oddballz, Tutorials and More!</p>
</div>
</body>
</html>