-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
34 lines (33 loc) · 1.03 KB
/
main.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
<!DOCTYPE html>
<html lang="hr">
<head>
<title>Speck zadatak</title>
<link rel="stylesheet" href="stil.css">
<script src="skripta.js"></script>
<meta charset="UTF-8">
</head>
<body class="izgled">
<header>
<section>
<div>
<h1 class="naslov">My technologies</h1>
</div>
<div class="textbox_pozicija">
<input class="textbox" type="text" id="unos" placeholder="Enter new technology...">
</div>
<div class="gumb_pozicija">
<button class="gumb" id="gumb" onclick="dodaj_element()">Add</button>
</div>
<div class="text_pozicija">
<p class="obrisi" onclick="obrisi_elemente()" id="text_remove">Remove all items</p>
</div>
</section>
</header>
<main>
<br><br><br><br>
<section class="pozicija_elementi">
<div class="elementi" id="DIVelementi"></div>
</section>
</main>
</body>
</html>