WEB : tutorial membuat menu select di web
<!DOCTYPE html>
<html>
<head>
<style>
select {
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<p>A styled select menu.</p>
<form>
<select id="country" name="country">
<option value="au">1</option>
<option value="ca">2</option>
<option value="usa">3</option>
</select>
</form>
</body>
</html>
<html>
<head>
<style>
select {
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<p>A styled select menu.</p>
<form>
<select id="country" name="country">
<option value="au">1</option>
<option value="ca">2</option>
<option value="usa">3</option>
</select>
</form>
</body>
</html>
hasil running :
Komentar
Posting Komentar