17 lines
196 B
HTML
17 lines
196 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
input {
|
|
width: 15em;
|
|
color: blue;
|
|
font-style: italic;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input type="number" value="123">
|
|
</body>
|
|
</html>
|