-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
27 lines (23 loc) · 867 Bytes
/
popup.html
File metadata and controls
27 lines (23 loc) · 867 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
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="title-container">
<img class="title-img" src="title-img.svg" />
<div class="text-input-container">
<input class="text-input" id="searchBar" placeholder="Buscar aba" autofocus></input>
<img class="text-input-img" src="search-icon.svg" />
</div>
</div>
<ul id="pages-list-id" class="pages-list">
</ul>
<div class="shortcut-text">Você também pode buscar uma página pressionando o atalho Ctrl + M</div>
<script src="script.js"></script>
</body>
</html>