-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbox.html
118 lines (106 loc) · 5.11 KB
/
toolbox.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Virtual Team Toolbox | ToolBox</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,800" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.0/css/all.css" integrity="sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y" crossorigin="anonymous">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this site -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-md fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">Virtual Team Toolbox</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contribute</a>
</li>
<li class="nav-item">
<a class="btn btn-warning" href="#">ToolBox</a>
</li>
</ul>
</div>
</div>
</nav>
<main role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron cat-heading">
<div class="container">
<h1 class="text-center">Categories of Articles in the ToolBox</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col category-box">
<a href="cat-pm.html">
<i class="fas fa-tasks"></i>
<h3>Project Management</h3>
</a>
</div>
<div class="col category-box">
<a href="#">
<i class="fas fa-folder-open"></i>
<h3>Document Storage & Collaboration</h3>
</a>
</div>
<div class="col category-box">
<a href="#">
<i class="fas fa-code-branch"></i>
<h3>Version Control</h3>
</a>
</div>
<div class="col category-box">
<a href="#">
<i class="fas fa-envelope"></i>
<h3>Formal Communication</h3>
</a>
</div>
</div><!-- End Row -->
<div class="row">
<div class="col category-box">
<a href="#">
<i class="fas fa-user-friends"></i>
<h3>Meetings</h3>
</a>
</div>
<div class="col category-box">
<a href="#">
<i class="fab fa-slack"></i>
<h3>Informal Communication</h3>
</a>
</div>
<div class="col category-box">
<a href="#">
<i class="fas fa-calendar-alt"></i>
<h3>Scheduling</h3>
</a>
</div>
<div class="col category-box">
<a href="#">
<i class="fas fa-layer-group"></i>
<h3>Creative Tools</h3>
</a>
</div>
</div><!-- End Row -->
</div><!-- End Container -->
</main>
<footer>
<div class="container">
<p>© Virtual Team Toolbox 2019</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="/docs/4.3/assets/js/vendor/jquery-slim.min.js"><\/script>')</script><script src="js/bootstrap.bundle.min.js" integrity="sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o" crossorigin="anonymous"></script>
</body>
</html>