-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.html
77 lines (73 loc) · 3.66 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
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tools</title>
<link rel="stylesheet" href="css/bs/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-md bg-dark fixed-top">
<a href="index.html" class="navbar-brand">
<img src="img/fs.png" alt="" width="38" class="d-inline-block align-top">
<h3 style="display: inline">Web Branch</h3>
</a>
<div class="collapse navbar-collapse">
<a href="index.html" class="btn btn-outline-success my-2 my-sm-0" >Головна</a>
<a href="all_lessons.html" class="btn btn-outline-warning my-2 my-sm-0" >Уроки</a>
<a href="tools.html" class="btn btn-outline-danger my-2 my-sm-0" >Інструментарій</a>
</div>
</nav>
<main role="main">
<div class="container">
<div class="col-md-12">
<div class="alert alert-dark" role="alert">
<h3>Середовища розробки: </h3><br>
<div class="tool img-thumbnail">
<img src="img/tools/notepadplusplus.png" height="90px" alt="">
<h4>Notepad++</h4>
<a href="https://notepad-plus-plus.org/" class="btn btn-outline-success my-2 my-sm-0">Перейти</a>
</div>
<div class="tool img-thumbnail">
<img src="img/tools/visualStudioCode.png" height="90px" alt="">
<h4>Visual Studio Code</h4>
<a href="https://code.visualstudio.com/" class="btn btn-outline-primary my-2 my-sm-0">Перейти</a>
</div>
<div class="tool img-thumbnail">
<img src="img/tools/SublimeText3.png" height="90px" alt="">
<h4>Sublime Text 3</h4>
<a href="https://www.sublimetext.com/3" class="btn btn-outline-dark my-2 my-sm-0">Перейти</a>
</div>
<div class="tool img-thumbnail">
<img src="img/tools/brackets.svg" height="90px" alt="">
<h4>Brackets</h4>
<a href="http://brackets.io/" class="btn btn-outline-primary my-2 my-sm-0">Перейти</a>
</div>
</div>
<div class="alert alert-dark">
<h3>Плагіни: </h3>
<div class="tool img-thumbnail plugin-tools">
<img src="img/tools/emmet.png" height="90px" alt="">
<h4>Emmet</h4>
<p>
Плагін для пришвидшеної розробки HTML-шаблонів. <i>(шукайте для свого середовища розробки)</i>
</p>
</div>
</div>
</div>
</div>
</main>
<footer class="container">
<hr>
<p>Author by Bogdan Korzhak</p>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="js/popper.min.js"></script>
<script src="js/bs/bootstrap.min.js"></script>
<script src="js/holder.min.js"></script>
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
</body>
</html>