-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathart.html
33 lines (27 loc) · 1005 Bytes
/
art.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
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Art List</title>
<link href="https://fonts.googleapis.com/css?family=Mali&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="acnh.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class="art__body body" onload="loadData()">
<div class="art__header header">
<button type="button" class="button__back" onclick="location.href = 'index.html';">
Back
</button>
<h1 class="art__title title">Art</h1>
</div>
<div class="art__filters filters">
<button type="button" class="button__toggleDonated" onclick="toggleDonated()">
Checking...
</button>
<input type="text" class="art__filters__search filters__search" placeholder="Search!" oninput="search()"></input>
</div>
<div class="art__container main-container">
</div>
</body>
<script src="art_json.js"></script>
<script src="pt.js"></script>
</html>