html-tips-tricks/DatePicker/index.html

27 lines
811 B
HTML
Raw Normal View History

2022-10-20 18:43:06 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>HTML - Date Picker</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet">
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
</head>
<body>
<div class="demo">
<a href="../index.html" class="home">
<img src="../home.svg" alt="home" />
</a>
<h1>Date Input</h1>
<form action="">
<input type="date" id="data">
<input type="button" onclick="show()" value="Submit">
</form>
</div>
</body>
</html>