-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.html
66 lines (64 loc) · 3.05 KB
/
tools.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stranica</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul class="hea">
<li><a href="index.html">Home</a></li>
<li><a href="tools.html">Tools</a></li>
<li><a href="contacts.html">Contact us</a></li>
<li><a href="forum.html">discussion</a></li>
</ul>
</nav>
</header>
<section>
<div class="naslov">Download tools</div>
</section>
<section class="too">
<figure>
<img src="slike/VSC_wall.png" alt="">
<figcaption>Visual Studio Code</figcaption>
<button onclick="window.location.href ='https://code.visualstudio.com/download'">Download</button>
</figure>
<figure>
<img src="slike/VS_wall.png" alt="">
<figcaption>Visual Studio</figcaption>
<button onclick="window.location.href ='https://visualstudio.microsoft.com/downloads/'">Download</button>
</figure>
<figure>
<img src="slike/python_wall.png" alt="">
<figcaption>Python</figcaption>
<button onclick="window.location.href ='https://www.python.org/downloads/release/python-352/'">Download</button>
</figure>
<figure>
<img src="slike/pycharm_wall.png" alt="">
<figcaption>PyCharm</figcaption>
<button onclick="window.location.href ='https://www.jetbrains.com/pycharm/download/#section=windows'">Download</button>
</figure>
<figure>
<img src="slike/eclipse_wall.png" alt="">
<figcaption>Eclipse</figcaption>
<button onclick="window.location.href ='https://www.eclipse.org/downloads/packages/'">Download</button>
</figure>
<figure>
<img src="slike/devc++_wall.png" alt="">
<figcaption>Dev-C++</figcaption>
<button onclick="window.location.href ='https://sourceforge.net/projects/orwelldevcpp/'">Download</button>
</figure>
<figure>
<img src="slike/AndrStud_wall.png" alt="">
<figcaption>Android Studio</figcaption>
<button onclick="window.location.href ='https://developer.android.com/studio'">Download</button>
</figure>
<figure>
<img src="slike/unity_wall.png" alt="">
<figcaption>Unity</figcaption>
<button onclick="window.location.href ='https://unity3d.com/get-unity/download'">Download</button>
</figure>
</section>
<footer>@josip.jurenic</footer>
</html>