This commit is contained in:
Shav Kinderlehrer 2023-05-22 01:28:45 -04:00
parent 3e524be856
commit e39d2dc6a8

View File

@ -1,2 +1,35 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
<main>
<h1>Trinket</h1>
<hr />
<div id="def">
<p><b><i>trinket</i><span id="def_pronunciation">|ˈtrɪŋkɪt|</span></b></p>
<p id="def_type"><i>n.</i></p>
<p>a small item that is of little value</p>
</div>
</main>
<style>
main {
text-align: center;
border: solid 2px black;
padding: 5px;
border-radius: 5px;
}
hr {
width: 70%;
}
#def {
text-align: center;
}
#def_pronunciation,
#def_type {
color: grey;
}
</style>