-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (28 loc) · 1.13 KB
/
index.html
File metadata and controls
34 lines (28 loc) · 1.13 KB
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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADS Quick Search – Qiushi Chris Tian</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/icon.png" type="image/png">
</head>
<body>
<div class="container">
<div class="title-wrapper">
<img src="assets/icon.png" alt="Webpage logo" class="logo">
<h1 class="page-title">Search ADS by First Author and Year</h1>
<!-- <p class="subtitle">Made by Qiushi (Chris) Tian</p> -->
</div>
<input type="text" id="searchInput" placeholder='E.g. "Guo, Shoujing04" or "van den Hove"'>
<button id="searchButton">Search ADS</button>
<p id="warningMessage" class="warning-message"></p>
<!-- <div id="result" class="output"></div> -->
<p class="bookmark-instruction">Tip: Bookmark this page with Ctrl+D or Cmd+D.</p>
</div>
<footer class="footer">
<a href="https://qiushitian.owlstown.net/" target="_blank" rel="noopener noreferrer">Visit Qiushi (Chris) Tian's website</a>
</footer>
<script src="script.js"></script>
</body>
</html>