<?php
require 'inc/db.php';
$erg = $db->query("SELECT * FROM test");
?>
<html>
<style>
input[type=text], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
div {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
</style>
<body>
<h3>Using CSS to style an HTML Form</h3>
<div>
<form action="/action_page.php">
<label for="fname">Alter</label>
<input type="text" id="fname" name="alter" placeholder="zb 12">
<label for="lname">Nummer</label>
<input type="text" id="lname" name="nummer" placeholder="zb 5">
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>