-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_menu.html
More file actions
75 lines (53 loc) · 2.14 KB
/
Copy pathmain_menu.html
File metadata and controls
75 lines (53 loc) · 2.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<title>White Book</title>
<meta name="description" content="Dzięki aplikacji White Book prowadź i kontroluj budżet osobisty">
<meta name="keywords" content="budżet, bilans, finanse, oszczędzanie, przychody, wydatki">
<meta name="author" content="Piotr Maryńczak">
<meta http-equiv="X-Ua-Compatible" content="IE=edge">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="css/fontello.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin-ext" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div id="container_menu">
<header class="head_style">
<a href="main-menu"><div id="logo_min"><img src="img/logo_min.png"/></div></a>
<div id="main_menu_style">
<h2>MENU WHITE BOOK</h2>
</div>
<div id="button-log-off">
<a href="#" id="logout"><i class="icon-off"></i>Log out</a>
</div>
<div style="clear: both"></div>
</header>
<main>
<div nav>
<div class="tile1">
<a href="dodaj-przychod" class="tilelink"><i class="icon-plus-squared"></i><br/>dodaj-przychod</a>
</div>
<div class="tile1">
<a href="dodaj-wydatek" class="tilelink"><i class="icon-minus-squared"></i><br/>dodaj-wydatek</a>
</div>
<div style="clear:both"></div>
<div class="tile2">
<a href="przegladaj-bilans" class="tilelink"><i class="icon-dollar"></i><br/>przegladaj-bilans</a>
</div>
<div class="tile2">
<a href="ustawienia" class="tilelink"><i class="icon-cog"></i><br/>ustawienia</a>
</div>
<div style="clear:both"></div>
</div>
</main>
<footer>
<div id="info">
Wszelkie prawa zastrzeżone © 2019
</div>
</footer>
</body>
</html>