-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.46 KB
/
index.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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/base.css" />
<link rel="stylesheet" href="./css/styles.css" />
<script src="./js/redux.js"></script>
<title>Oline Counter Tool</title>
</head>
<body>
<header class="background-color-primary flex align-items-center justify-content-space-between padding-x-1 color-white">
<h1 class="font-size-3 flex">
<img class="width-4 height-4 margin-right-1" src="./img/hand-pointer-solid.svg"/>
Online Counter
</h1>
<a href="https://github.com/RodrigoWebDev/redux-counter-app" class="line-height-0"><img class="width-4 height-4" src="./img/github-brands.svg" /></a>
</header>
<div id="app" class="p-1">
<button id="add-counter" class="btn-primary button-icon button-icon-text margin-bottom-0_5">
<img src="./img/plus-solid.svg" />
Add Counter
</button>
<button id="remove-all-counters" class="btn-danger button-icon button-icon-text margin-bottom-0_5">
<img src="./img/trash-solid.svg" />
Remove All Counters
</button>
<div id="counter-list" class="md-flex flex-wrap m-x--0-5"></div>
</div>
<footer>
Made by <a href="https://github.com/RodrigoWebDev">me</a> :)
</footer>
<script src="./js/sweet-alert.js"></script>
<script src="./js/app.js"></script>
</body>
</html>