resources

things like website templates and snippets + websites i find helpful can be found right

dialogue box 1/8/2025 orginally on snub site this was the for the rough mock rpg idea i had back then

html

<div class="box">
<img src="insert your file path here">
<span class="name">name here</span>
<p>"dialogue here"</p>
</div>

css

.box {
color: white;
border: 2px solid white;
background: black;
max-width: 500px;
margin: 5px auto;
min-height: 105px;
}

.box img {
width: 100px;
height: 100px;
vertical-align:middle;
margin-right: 10px;
float:left;
border: 2px solid #444444;
}

.name {
font-weight: bold;
color: white;
margin-bottom:-10px;
}

.box p {
margin: 0 5px 0 5px;
}

endresult

USER

dialogue here