Anda di halaman 1dari 2

<!

DOCTYPE html>

<html>
<head>
<meta charset = "utf-8">
<title>Burtgel</title>
</head>

<body>
<h1>New Form</h1>
<p>
<label>Email Address:
<input type = "email" placeholder = "name@domain.com"
pattern = ".+@example\.com" required />
</label>
</p>
<p>
<label>Telephone Number:
<input type = "tel" placeholder="########"/>
</label>
</p>
<p>
<label>URL:
<input type = "url" placeholder = "http://www.domainname.com" />
</label>
</p>
<p>
<label>Numeric Value:
<input type = "number" />
</label>
</p>
<p>
<label>Range:
0 <input type = "range"
min = "0"
max = "100"
value = "50" /> 100
</label>
</p>
<p>
<label>Country:
<input>
</label>
</p>
<p>
<label>Search:
<input>
</label>
</p>
<p>
<label>Color:
<input type = "color" autofocus />
</label>
</p>
<p>
<label>Date of Birth:
<input type = "date" />
</label>
</p>
<p>
<label>Month
<input type = "month" />
</label>
</p>
<p>
<label>Week:
<input type = "week" />
</label>
</p>
<p>
<label>Time:
<input type = "time" />
</label>
</p>
<p>
<label>Datetime:
<input type = "datetime" />
</label>
</p>
<p>
<label>Datetime-local:
<input type = "datetime-local" />
</label>
</p>
<p>
<input type = "submit" />
</p>
</body>
</html>

Anda mungkin juga menyukai