-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 790 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 790 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Anime</title>
<link rel="stylesheet" href="style.css" />
<script src="index.js" defer></script>
</head>
<body>
<nav>
<div class="nav__title">Anime Log</div>
<div class="nav__search">
<input class="nav__search__input anime__search" type="text" placeholder="Search..." />
<button class="nav__search__button">Search</button>
</div>
</nav>
<main>
<div class="main__search">
<input class="search__input anime__search" type="text" placeholder="Search..." />
</div>
<div class="anime__cards" id="anime__cards">
</div>
</main>
</body>
</html>