I'm trying to create a system that looks like this:
As I'm starting now, I'm trying anyway to learn even if it takes a long time to get something close to it. So far I've been able to do this:
htmlcodesofar:
<!DOCTYPEhtml><htmllang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css.css">
</head>
<body>
<p>
<select class="basic">
<option value="b" selected="selected" >Bronze</option>
<option value="p" >Prata</option>
<option value="g" >Gold</option>
<option value="p" >Platina</option>
<option value="d" >Diamante</option>
</select>
</p>
<p>
<select class="basic1">
<option value="Gold" selected="selected" >Gold</option>
<option value="lv" >lV</option>
<option value="lll" >lll</option>
<option value="ll" >ll</option>
<option value="l" >l</option>
</select>
</p>
<div class="botaocomprar">
<form method="post" action="compra.php">
<input type="button" name="btog" value="Valor 50 $$"/>
</form>
</div>
</body>
</html>
Well I wanted to know if my logic is on the right track or I need to change or improve something, and if someone can tell me if the part of the div is correct or missing something?
I have not tried anything in php yet.