-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (40 loc) · 1.3 KB
/
index.html
File metadata and controls
48 lines (40 loc) · 1.3 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
<!DOCTYPE html>
<html id="html" lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/LT_logo.png" type="Logo">
<link rel="stylesheet" href="styles.css">
<title>$ Cash-Master $</title>
</head>
<body>
<header>
<h1>$ Cash Master $</h1>
<small id="slogen">Adatbázis és pénztárgép egyben...</small>
</header>
<section id="content">
<!-- Ez lesz az oldal fő része. -->
<h2 id="product-list">Árucikkek:</h2>
<hr>
<div class="products">
<ul id="cuccok" class="cks">
<!-- Az árucikkek tételesen -->
</ul>
</div>
<hr>
<div id="process">
<div class="gombok" id="osszeg">
<button id="count">Összesen</button>
<p id="sum">0</p>
</div>
<div class="gombok"><button id="buy">Megveszi</button></div>
<div class="gombok"><button id="save">Adatok mentése</button></div>
</div>
</section>
<footer>
<p id="creator">Az oldalt készítette: </p>
<a href="https://github.com/LionTurtle-dev">Pataki Tas Bálint</a>
</footer>
<script src="./script.js"></script>
</body>
</html>