65 lines
1.3 KiB
HTML
65 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Carolyn's Creations</title>
|
|
|
|
<!-- saudade includes -->
|
|
<script src="/saudade.js?@root" type="module"></script>
|
|
|
|
<style>
|
|
html {
|
|
--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;
|
|
}
|
|
|
|
p {
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:visited {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:active {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ffff40;
|
|
text-decoration: line-through;
|
|
cursor: ne-resize;
|
|
}
|
|
</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>
|