I have a unique layout with two datalist
elements centered, text positioned above, and two buttons integrated.
body {
background-color: DarkGray;
}
h1 {
color: black;
font-size: 30px;
font-family: 'lucida console'
}
span {
color: #443431;
font-weight: bold;
font-family: 'Courier New'
}
<ol style="text-align:center; list-style-position:inside;">
<h1>Ref</h1>
<form name="ref" onsubmit="return generateLink();">
<span>PiCK</span>
<br>...
<input type="submit">
<input type="reset">
</form>
</ol>
https://i.sstatic.net/cd0Jb.png
If you're wondering how to recreate the following design:
https://i.sstatic.net/Lp8Bf.png
Feel free to share any suggestions or recommendations on how to proceed. This is my first experience working with html
, so I'm open to learning different methods of achieving this.