-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaperwall.html
More file actions
36 lines (34 loc) · 1.07 KB
/
paperwall.html
File metadata and controls
36 lines (34 loc) · 1.07 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
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PaperWall</title>
<link rel="stylesheet" href="./paperwall.css">
<script src="paperwall.js" defer></script>
<script src="https://kit.fontawesome.com/bcc9467b57.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="container">
<div class="section-search">
<input type="text">
<button id="search">Wow!</button>
<div class="search-text">...</div>
</div>
<div class="section-bar">
<div class="bar-img">
</div>
<div class="bar-btns">
<button class="btnNav prev">
<i class="fa-solid fa-chevron-right fa-rotate-180"></i>
</button>
<button class="btnNav next">
<i class="fa-solid fa-chevron-right"></i>
</button>
</div>
</div>
</div>
</body>
</html>