-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 891 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name= "viewport" content="width=device-width">
<title>NYTime Machine</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<link href="main.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<form id="submit-form">
<!-- <input class="year" placeholder="year"></input>
<input class="month" placeholder="month"></input>
<input class="day" placeholder="day"></input>
-->
<input id="date" type="date"></input>
<button id="submit-button" >Search</button>
</form>
<div class="column past-news">
<div class="article"></div>
</div>
<div class="column current-news"></div>
<script src="index.js"></script>
</body>