saudade/carolyns_creations/carolyns_creations.html

63 lines
1.2 KiB
HTML
Raw Normal View History

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